/**
* Convert a camel-case name into a dashed name
* - for example
* dashify("BigManStyle")
* //> "big-man-style"
*/exportfunctiondashify(camel) {
return camel.replace(/([a-zA-Z])(?=[A-Z])/g, '$1-').toLowerCase();
}
//# sourceMappingURL=dashify.js.map