diff options
Diffstat (limited to 'node_modules/lodash/upperFirst.js')
-rw-r--r-- | node_modules/lodash/upperFirst.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/node_modules/lodash/upperFirst.js b/node_modules/lodash/upperFirst.js new file mode 100644 index 0000000..1dd64e1 --- /dev/null +++ b/node_modules/lodash/upperFirst.js @@ -0,0 +1,22 @@ +var createCaseFirst = require('./_createCaseFirst'); + +/** + * Converts the first character of `string` to upper case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.upperFirst('fred'); + * // => 'Fred' + * + * _.upperFirst('FRED'); + * // => 'FRED' + */ +var upperFirst = createCaseFirst('toUpperCase'); + +module.exports = upperFirst; |