File size: 122 Bytes
d9494a5
 
1
2
3
export const camelToSnakeCase = (str: string): string =>
  str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`);