extend-shallow
Install
$ npm install --save extend-shallowUsage
var extend = require('extend-shallow');
extend({a: 'b'}, {c: 'd'})
//=> {a: 'b', c: 'd'}var obj = {};
extend(obj, {a: 'b'}, {c: 'd'})
//=> {a: 'b', c: 'd'}About
Related projects
Contributors
Author
License
Last updated