UNPKG

motion

Version:

motion - moving development forward

22 lines (19 loc) 462 B
var createCaseFirst = require('./internal/createCaseFirst'); /** * Converts the first character of `string` to lower case. * * @static * @memberOf _ * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the converted string. * @example * * _.lowerFirst('Fred'); * // => 'fred' * * _.lowerFirst('FRED'); * // => 'fRED' */ var lowerFirst = createCaseFirst('toLowerCase'); module.exports = lowerFirst;