JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 69
  • Score
    100M100P100Q68857F
  • License MIT

A browserify bundled web-friendly version of the change-case module with other case utilities included.

Package Exports

  • change-case-bundled
  • change-case-bundled/src/change-case.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (change-case-bundled) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Change Case Bundled

NPM version Coverage Status Known Vulnerabilities Downloads Install Size Contributors Pull Requests Welcome

A browserify bundled web-friendly version of the change-case module with other case utilities included.

Documentation

View the original documentation here.

Web Usage

<script src="change-case-bundled.min.js"></script>

<script type="text/javascript">
    changeCase.camelCase("Nice Meme"); // => "niceMeme"
</script>

Node.js Usage

const changeCase = require("change-case-bundled");

changeCase.pascalCase("Door Stuck"); // => "DoorStuck"

Installation

To install this module:

npm install change-case-bundled

Building

To build the distribution files for this module:

npm run build