Urara-Blog/node_modules/.pnpm-store/v3/files/c9/a86b5712e0b7b066897da04ea4d7311c8c123382516d6157077c0b975cc20c294b7c5f962f566e0b1928eab87e1c74b29ef9f29f9aab9d55a9ab2ed8d380e2
2022-08-14 01:14:53 +08:00

28 lines
592 B
Text

var toString = require('./toString');
/**
* Converts `string`, as a whole, to lower case just like
* [String#toLowerCase](https://mdn.io/toLowerCase).
*
* @static
* @memberOf _
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to convert.
* @returns {string} Returns the lower cased string.
* @example
*
* _.toLower('--Foo-Bar--');
* // => '--foo-bar--'
*
* _.toLower('fooBar');
* // => 'foobar'
*
* _.toLower('__FOO_BAR__');
* // => '__foo_bar__'
*/
function toLower(value) {
return toString(value).toLowerCase();
}
module.exports = toLower;