/casemate

Storage of many useful utilities for JavaScript

Primary LanguageJavaScriptMIT LicenseMIT

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