UNPKG

xe-utils-es

Version:

JavaScript 函数库、工具类

9 lines (8 loc) 215 B
/** * 将带字符串转成驼峰字符串,例如: project-name 转为 projectName * * @param {string} str 字符串 * @return {string} */ declare function camelCase(str: any): any; export default camelCase;