mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 16:40:57 +00:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
'use client';
|
|
'use strict';
|
|
|
|
function upperFirst(value) {
|
|
return typeof value !== "string" ? "" : value.charAt(0).toUpperCase() + value.slice(1);
|
|
}
|
|
|
|
exports.upperFirst = upperFirst;
|
|
//# sourceMappingURL=upper-first.cjs.map
|