corrected-names

given a string, returns an object with its camelCaseName, PascalCaseName, underscored_name, dashed_name and the original input string

Usage no npm install needed!

<script type="module">
  import correctedNames from 'https://cdn.skypack.dev/corrected-names';
</script>

README

corrected-names

Given a string, returns an object with its camelCaseName, PascalCaseName, underscored_name, dashed-name and the original input string


  const getCorrectedNames = require('corrected-names');
  
  const myCorrectedNames = getCorrectedNames('my_Corrected-names');
  /* 
    returns: 
    
    {
      camelCaseName: 'myCorrectedNames',
      pascalCaseName: 'MyCorrectedNames',
      underscoredName: 'my_corrected_names',
      dashedName: 'my-corrected-names',
      originalName: 'my_Corrected-names',
    }
  
  */