mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 03:10:55 +00:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
'use client';
|
|
function lowerFirst(value) {
|
|
return typeof value !== "string" ? "" : value.charAt(0).toLowerCase() + value.slice(1);
|
|
}
|
|
|
|
export { lowerFirst };
|
|
//# sourceMappingURL=lower-first.mjs.map
|