1.2.4 • Published 5 months ago

cmbutil v1.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

cmbutil

npm (scoped) GitHub issues GitHub license

A small set of useful vanilla Javascript utilities you can use in anything.

Install

npm install cmbutil --save

Usage

import cmbutil from 'cmbutil';

const num = 123;
if (cmbutil.isNumeric(num)) {
  console.log(`${num} is numeric`);
}

const myString = "hello world!";
const properCasedString = cmbutil.properCase(myString);
console.log(properCasedString);

Build from source

Clone repository: git clone https://github.com/cmbaughman/cmbutil.git

Clone with gh: gh repo clone cmbaughman/cmbutil

Generate documentation

This project uses jsdoc for documentation. To regenerate the documentation, (be sure to use jsdoc syntax), use the following command:

npm run docs
1.2.4

5 months ago

1.2.3

5 months ago

1.2.2

5 months ago

1.2.0

6 months ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago