Spaces:
Build error
Build error
| export const camelToSnakeCase = (str: string): string => | |
| str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`); | |
| export const camelToSnakeCase = (str: string): string => | |
| str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`); | |