3 lines
101 B
TypeScript
3 lines
101 B
TypeScript
export function toSnakeCase(str: string): string {
|
|
return str.replaceAll(' ', '_').toLowerCase()
|
|
}
|