Files
emaui/node_modules/@mantine/hooks/cjs/utils/lower-first/lower-first.cjs
2026-05-29 15:23:46 +03:00

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