source: trip-planner-front/node_modules/lodash/upperFirst.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 470 bytes
Line 
1var createCaseFirst = require('./_createCaseFirst');
2
3/**
4 * Converts the first character of `string` to upper case.
5 *
6 * @static
7 * @memberOf _
8 * @since 4.0.0
9 * @category String
10 * @param {string} [string=''] The string to convert.
11 * @returns {string} Returns the converted string.
12 * @example
13 *
14 * _.upperFirst('fred');
15 * // => 'Fred'
16 *
17 * _.upperFirst('FRED');
18 * // => 'FRED'
19 */
20var upperFirst = createCaseFirst('toUpperCase');
21
22module.exports = upperFirst;
Note: See TracBrowser for help on using the repository browser.