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