New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

nuancejs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuancejs

Easy to use typescript utility library designed to be a lightweight alternative to lodash.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

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

Keywords

javascript

FAQs

Package last updated on 21 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts