source: imaps-frontend/node_modules/lodash-es/lowerCase.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 620 bytes
RevLine 
[d565449]1import createCompounder from './_createCompounder.js';
2
3/**
4 * Converts `string`, as space separated words, to lower 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 lower cased string.
12 * @example
13 *
14 * _.lowerCase('--Foo-Bar--');
15 * // => 'foo bar'
16 *
17 * _.lowerCase('fooBar');
18 * // => 'foo bar'
19 *
20 * _.lowerCase('__FOO_BAR__');
21 * // => 'foo bar'
22 */
23var lowerCase = createCompounder(function(result, word, index) {
24 return result + (index ? ' ' : '') + word.toLowerCase();
25});
26
27export default lowerCase;
Note: See TracBrowser for help on using the repository browser.