Transform a string between
camelCase,PascalCase,Capital Case,snake_case,param-case,CONSTANT_CASEand others.
npm install change-case --save
import {
  camelCase,
  capitalCase,
  constantCase,
  dotCase,
  headerCase,
  noCase,
  paramCase,
  pascalCase,
  pathCase,
  sentenceCase,
  snakeCase,
} from "change-case";
Methods can also be installed independently. All functions also accept options as the second argument.
MIT