corrected-names
v1.0.2
Published
given a string, returns an object with its camelCaseName, PascalCaseName, underscored_name, dashed_name and the original input string
Downloads
9
Maintainers
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',
}
*/