mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 13:14:44 +00:00
.
This commit is contained in:
parent
fc725ba36b
commit
422b9fdb15
7395 changed files with 1786235 additions and 3476 deletions
27
node_modules/lodash/lowerCase.js
generated
vendored
Normal file
27
node_modules/lodash/lowerCase.js
generated
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
var createCompounder = require('./_createCompounder');
|
||||
|
||||
/**
|
||||
* Converts `string`, as space separated words, to lower case.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 4.0.0
|
||||
* @category String
|
||||
* @param {string} [string=''] The string to convert.
|
||||
* @returns {string} Returns the lower cased string.
|
||||
* @example
|
||||
*
|
||||
* _.lowerCase('--Foo-Bar--');
|
||||
* // => 'foo bar'
|
||||
*
|
||||
* _.lowerCase('fooBar');
|
||||
* // => 'foo bar'
|
||||
*
|
||||
* _.lowerCase('__FOO_BAR__');
|
||||
* // => 'foo bar'
|
||||
*/
|
||||
var lowerCase = createCompounder(function(result, word, index) {
|
||||
return result + (index ? ' ' : '') + word.toLowerCase();
|
||||
});
|
||||
|
||||
module.exports = lowerCase;
|
Loading…
Add table
Add a link
Reference in a new issue