Mission Control Dashboard - Initial implementation
This commit is contained in:
6
node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.mjs
generated
vendored
Normal file
6
node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.mjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
function camelToDash(str) {
|
||||
return str.replace(/([A-Z])/g, (match) => `-${match.toLowerCase()}`);
|
||||
}
|
||||
|
||||
export { camelToDash };
|
||||
//# sourceMappingURL=camel-to-dash.mjs.map
|
||||
Reference in New Issue
Block a user