(str: string)
| 35 | } |
| 36 | |
| 37 | function camelToSnake(str: string): string { |
| 38 | return str.replaceAll(/[A-Z]/g, (ch: string) => `_${ch.toLowerCase()}`); |
| 39 | } |
| 40 | |
| 41 | /* ------------------------------------------------------------------ */ |
| 42 | /* Read / parse */ |
no outgoing calls
no test coverage detected