non-functional thing

This commit is contained in:
Emma
2023-07-27 05:12:30 -06:00
parent f300ddc1a1
commit 7e6a0036e4
6 changed files with 1164 additions and 110 deletions

1
utils/camelToSpace.ts Normal file
View File

@@ -0,0 +1 @@
export const camelToSpace = (value: string) => value.replace(/[A-Z0-9]/g, e => ` ${e.toLowerCase()}`);