/** * [camelCaseToHyphen 将驼峰命名转换为连字符] * @param {[string]} str [驼峰命名的字符串] * @return {[string]} [连字符的字符串] */ export function camelCaseToHyphen (str) { return str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase() }