verdigris/src/helpers/string.ts
2025-09-20 11:30:30 -06:00

3 lines
101 B
TypeScript

export function toSnakeCase(str: string): string {
return str.replaceAll(' ', '_').toLowerCase()
}