mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
672 B
672 B
camelCase
字符串转换为驼峰命名法。
驼峰命名法是一种命名约定,其中第一个单词小写,后续每个单词首字母大写。例如,camelCase
。
签名
function camelCase(str: string): string;
参数
str
(string
): 要转换为驼峰命名法的字符串。
Returns
(string
) 转换后的驼峰命名法字符串。
示例
import { camelCase } from 'es-toolkit/string';
camelCase('camelCase'); // 返回 'camelCase'
camelCase('some whitespace'); // 返回 'someWhitespace'
camelCase('hyphen-text'); // 返回 'hyphenText'
camelCase('HTTPRequest'); // 返回 'httpRequest'