UNPKG

193 BJavaScriptView Raw
1module.exports = {
2 toDashCase: s => s.replace(/\.?([A-Z]+)/g, (x, y) => `-${y.toLowerCase()}`).replace(/^-/, ''),
3 getComponentName: name => name.charAt(0).toUpperCase() + name.slice(1),
4};