UNPKG
xe-utils-es
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
JavaScript 函数库、工具类
xe-utils-es
/
types
/
kebabCase.d.ts
9 lines
(8 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * 将带驼峰字符串转成字符串,例如: projectName 转为 project-name * *
@param
{
string
} str 字符串 *
@return
{
string
} */
declare
function
kebabCase
(
str
:
any
):
any
;
export
default
kebabCase;