UNPKG

si-funciona

Version:

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

10 lines (9 loc) 261 B
import 'core-js/stable'; /** * Given a string, make the first character uppercase and the rest lowercase. * @memberOf module:stringHelpers * @param {string} str * @returns {string} */ declare const ucFirst: (str: string) => string; export default ucFirst;