You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
/**
|
|
* @description: 驼峰转-
|
|
* @param {String} str 字符串
|
|
* @param {String} mark 转换符号:-
|
|
* @return {String}
|
|
* @example: toLine('borderRadius') // border-radius
|
|
*/
|
|
export default function toLine(str = '', mark = '-') {
|
|
return str.replace(/([A-Z])/g, `${mark}$1`).toLowerCase();
|
|
}
|
|
|