UNPKG

94 BJavaScriptView Raw
1export const kebabCase = string =>
2 string.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase()