A browserify bundled web-friendly version of the change-case module with other case utilities included.
View the original documentation here.
<script src="change-case-bundled.min.js"></script>
<script type="text/javascript">
changeCase.camelCase("Nice Meme"); // => "niceMeme"
</script>
const changeCase = require("change-case-bundled");
changeCase.pascalCase("Door Stuck"); // => "DoorStuck"
To install this module:
npm install change-case-bundled
To build the distribution files for this module:
npm run build