UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

10 lines (7 loc) 225 B
'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