UNPKG

lucide-react-native

Version:

A Lucide icon library package for React Native applications.

17 lines (13 loc) 411 B
/** * @license lucide-react-native v1.18.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ 'use strict'; const toCamelCase = (string) => string.replace( /^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase() ); exports.toCamelCase = toCamelCase; //# sourceMappingURL=toCamelCase.js.map