Package Exports
- qb-assign
- qb-assign/index.js
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 (qb-assign) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
qb-assign
A tiny Object.assign implementation that works down to IE9
Object.assign support is still just shy of healthy (no IE, > Chrome 45), so this tiny implementation uses Object.keys() which has broader support (> IE9, > Chrome 5). Using Object.keys() reduces the code and skips prototypes which is a bit sleeker than for..in.
Complies with the 100% test coverage and minimum dependency requirements of qb-standard .
Install
npm install qb-assign
Usage
Same api as Object.assign
var assign = require('qb-assign')
var opt = assign( {a: 1, b: 2}, {a: 7, c: 3} )
console.log(opt)
> { a: 7, b: 2, c: 3 }