Package Exports
- utils-merge
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (utils-merge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
utils-merge
Merges the properties from a source object into a destination object.
Install
$ npm install utils-merge
Usage
var a = { foo: 'bar' }
, b = { bar: 'baz' };
merge(a, b);
// => { foo: 'bar', bar: 'baz' }
License
Copyright (c) 2013-2017 Jared Hanson <http://jaredhanson.net/>