spaceout/front_end/node_modules/webpack-cli/lib/utils/helpers.js
2020-12-12 10:25:30 -05:00

11 lines
275 B
JavaScript

/**
* Convert camelCase to kebab-case
* @param {string} str input string in camelCase
* @returns {string} output string in kebab-case
*/
function toKebabCase(str) {
return str.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();
}
module.exports = { toKebabCase };