0.1.2 • Published 8 months ago

nuancejs v0.1.2

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

Nuance.js Functions

A package of everyday, JavaScript / TypeScript functions that will save you time when used.

This package was made with intent to simplify the development experience by sourcing basic functions, to keep your codebase clean.

Installation

yarn add nuancejs
# or
npm install nuancejs --save

Example Usage

import { randomInRange } from "nuancejs"; // if you're using ES6 modules
const { randomInRange } = require("nuancejs");

const randomNum = randomInRange({
  min: 0,
  max: 10,
  // other properties if needed
});

// You can also do as such:
import * as Nuance from "nuancejs";
const randomNum = Nuance.randomInRange({...});

You can find documentation for this library over at nuancejs.org

Licence

MIT

0.1.2

8 months ago

0.1.0

1 year ago

0.1.1

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago