UNPKG

si-funciona

Version:

Funciones de utilidad para uso general. [General usage utility functions.]

10 lines (9 loc) 273 B
import 'core-js/stable'; /** * Given a string in kebab-case, snake_case or 'Sentence case', convert to camelCase. * @memberOf module:stringHelpers * @param {string} str * @returns {string} */ declare const camelCase: (str: string) => string; export default camelCase;