Skip to content
On this page

toCamelCase

将命名转换为驼峰命名

使用

js
import { toCamelCase } from '@pinos-ui/utils'

代码示例

参数说明

参数名说明类型必传默认值
value要转换的值string-

类型声明

js
export declare function toCamelCase(value: string): string;