1.0.7 • Published 2 years ago

casemate v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Casemate

NPM Version NPM Downloads npm bundle size MIT License Website Github Follow

Storage of many useful utility functions for JavaScript.

Installation

Using npm

$ npm i -g npm
$ npm i --save casemate

Use case

In Node.js

// Require the module
const casemate = require("casemate");
// Capitalize a string
const capitalizeName = casemate.capitalize("john doe"); // John Doe
// Convert a string to snake case
const snakeCased = casemate.snakeCase("fooBar"); // foo_bar

Author