服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.camelCase(string='')

转换string骆驼案件

以来

3.0.0

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

(字符串):返回驼峰字符串。

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