mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Bump to v4.0.0.
This commit is contained in:
26
toLower.js
Normal file
26
toLower.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import toString from './toString';
|
||||
|
||||
/**
|
||||
* Converts `string`, as a whole, to lower case.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @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();
|
||||
}
|
||||
|
||||
export default toLower;
|
||||
Reference in New Issue
Block a user