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 upperFirst(value) { return typeof value !== "string" ? "" : value.charAt(0).toUpperCase() + value.slice(1); } exports.upperFirst = upperFirst; //# sourceMappingURL=upper-first.cjs.map