Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 | export function toSnakeCase(str: string): string { return str .replace(/([a-z])([A-Z])/g, '$1_$2') // Handle camelCase and PascalCase .replace(/([A-Z]+)([A-Z][a-z])/g, '$1_$2') // Handle acronyms .replace(/[^a-zA-Z0-9]+/g, '_') // Replace special characters with '_' .replace(/_+/g, '_') // Merge multiple underscores .toLowerCase(); } |