Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 786 Bytes

File metadata and controls

29 lines (21 loc) · 786 Bytes
A range of node utilities to aid your development.

Installation

Install the package via npm:

$ npm install nodeutils --save

Usage

Every nodeutils package is available as a poperty of nodeutils, in camelCase.

Packages

reqhere

Simple straightforward tool to allow you to require locally. [Read More]

require("nodeutils").reqhere();

defaultsDeep

Like lodash's defaultsDeep, but with no mutation and with preservation of arrays. [Read More]

var defaultsDeep = require("nodeutils").defaultsDeep;
var merged = defaultsDeep(mostImportant, nextImportant, leastImportant...);