Convert camel case to snake case

PHOTO EMBED

Tue Aug 09 2022 19:30:18 GMT+0000 (Coordinated Universal Time)

Saved by @johnnye562 #javascript

const camelToSnakeCase = (text) => {
  if (!(typeof text === "string" || text instanceof String)) {
    console.error(`string expected, ${typeof text} provided`)
    return text
  }
  return text.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`)
}

camelToSnakeCase("camelCaseToSnakeCase") // camel_case_to_snake_case
content_copyCOPY

https://justacoding.blog/9-useful-javascript-utility-functions/