(str: string)
| 58 | * @returns The snake_case string. |
| 59 | */ |
| 60 | export function camelToSnakeCase(str: string): string { |
| 61 | return str.replace(/[A-Z0-9]/g, (match) => `_${match.toLowerCase()}`); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Converts a camelCase string to kebab-case. |
no outgoing calls
no test coverage detected