服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.toLower(string='')

string整体而言,转换为小写字母,就像String#toLowerCase一样

版本

4.0.0

参数
  1. [string=''] (字符串):要转换的字符串。
返回

(字符串):返回下方的字符串。

_.toLower('--Foo-Bar--');
// => '--foo-bar--'
 
_.toLower('fooBar');
// => 'foobar'
 
_.toLower('__FOO_BAR__');
// => '__foo_bar__'