intesso / defaults-clone

deep defaults with cloned arguments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

defaults-clone

Deep defaults based on defaults-deep with cloned arguments using clone-deep.

for node.js and the browser with browserify.

also handles functions in the object tree nicely.

install

npm install --save defaults-clone

use

var defaults = require('defaults-clone');

defaults({a: {one: 'one'}}, {a: {two: 'two'}})
//=> {a: {one: 'one', two: 'two'}};

test

npm test

license

MIT with code from defaults-deep wit MIT License

About

deep defaults with cloned arguments


Languages

Language:JavaScript 100.0%