extnd
v0.0.3
Published
extend object with properties from n other objects
Downloads
6
Readme
##extnd
var extnd = require('extnd');
var thing = extnd({ prop: 'one', property: 'two' }, { test: 'three' });
returns
{ prop: 'one', property: 'two', test: 'three' };