UNPKG

jointjs

Version:

JavaScript diagramming library

6 lines (4 loc) 134 B
const toKebabCase = (str) => { return str.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase(); }; module.exports = toKebabCase;