_.toLower([string=''])
Converts string
, as a whole, to lower case just like String#toLowerCase.
Since
4.0.0
Arguments
-
[string='']
(string): The string to convert.
Returns
(string): Returns the lower cased string.
Example
1 2 3 4 5 6 7 8 | _.toLower( '--Foo-Bar--' ); // => '--foo-bar--' _.toLower( 'fooBar' ); // => 'foobar' _.toLower( '__FOO_BAR__' ); // => '__foo_bar__' |
Please login to continue.