Mission Control Dashboard - Initial implementation
This commit is contained in:
+6
@@ -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