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