Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 710 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 710 Bytes

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