mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 19:07:49 +00:00
Remove references to _.
This commit is contained in:
@@ -5,20 +5,19 @@ import toString from './toString.js';
|
||||
* [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--');
|
||||
* toLower('--Foo-Bar--');
|
||||
* // => '--foo-bar--'
|
||||
*
|
||||
* _.toLower('fooBar');
|
||||
* toLower('fooBar');
|
||||
* // => 'foobar'
|
||||
*
|
||||
* _.toLower('__FOO_BAR__');
|
||||
* toLower('__FOO_BAR__');
|
||||
* // => '__foo_bar__'
|
||||
*/
|
||||
function toLower(value) {
|
||||
|
||||
Reference in New Issue
Block a user