企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
```js /** * [camelCaseToHyphen 将驼峰命名转换为连字符] * @param {[string]} str [驼峰命名的字符串] * @return {[string]} [连字符的字符串] */ export function camelCaseToHyphen (str) { return str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase() } ```