Appearance
_.kebabCase() 方法将给定的字符串转换为短横线连接的形式。
_.kebabCase()
string
(string): 返回转换后的短横线连接的字符串。
const result = _.kebabCase("Foo Bar"); console.log(result); // => 'foo-bar'
在这个示例中,字符串 'Foo Bar' 被转换为了短横线连接的形式 'foo-bar'。
'Foo Bar'
'foo-bar'