{"_attachments":{},"_id":"object-assign","_rev":"449-61f14493a920628a7b6e1d2c","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"description":"ES2015 `Object.assign()` ponyfill","dist-tags":{"latest":"4.1.1"},"license":"MIT","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"sophiebits","email":"npm2@sophiebits.com"},{"name":"gaearon","email":"dan.abramov@gmail.com"}],"name":"object-assign","readme":"# object-assign [![Build Status](https://travis-ci.org/sindresorhus/object-assign.svg?branch=master)](https://travis-ci.org/sindresorhus/object-assign)\n\n> ES2015 [`Object.assign()`](http://www.2ality.com/2014/01/object-assign.html) [ponyfill](https://ponyfill.com)\n\n\n## Use the built-in\n\nNode.js 4 and up, as well as every evergreen browser (Chrome, Edge, Firefox, Opera, Safari),\nsupport `Object.assign()` :tada:. If you target only those environments, then by all\nmeans, use `Object.assign()` instead of this package.\n\n\n## Install\n\n```\n$ npm install --save object-assign\n```\n\n\n## Usage\n\n```js\nconst objectAssign = require('object-assign');\n\nobjectAssign({foo: 0}, {bar: 1});\n//=> {foo: 0, bar: 1}\n\n// multiple sources\nobjectAssign({foo: 0}, {bar: 1}, {baz: 2});\n//=> {foo: 0, bar: 1, baz: 2}\n\n// overwrites equal keys\nobjectAssign({foo: 0}, {foo: 1}, {foo: 2});\n//=> {foo: 2}\n\n// ignores null and undefined sources\nobjectAssign({foo: 0}, null, {bar: 1}, undefined);\n//=> {foo: 0, bar: 1}\n```\n\n\n## API\n\n### objectAssign(target, [source, ...])\n\nAssigns enumerable own properties of `source` objects to the `target` object and returns the `target` object. Additional `source` objects will overwrite previous ones.\n\n\n## Resources\n\n- [ES2015 spec - Object.assign](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign)\n\n\n## Related\n\n- [deep-assign](https://github.com/sindresorhus/deep-assign) - Recursive `Object.assign()`\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n","time":{"created":"2022-01-26T12:54:43.775Z","modified":"2024-11-26T13:13:51.273Z","4.1.1":"2017-01-16T15:35:15.282Z","4.1.0":"2016-05-02T18:09:55.804Z","4.0.1":"2015-08-20T12:34:04.010Z","4.0.0":"2015-08-20T09:06:05.735Z","2.1.1":"2015-06-05T14:26:28.479Z","3.0.0":"2015-06-04T14:09:02.051Z","2.0.0":"2014-11-22T03:40:09.589Z","1.0.0":"2014-08-14T10:45:03.502Z","0.4.0":"2014-08-13T07:47:00.902Z","0.3.1":"2014-04-30T22:36:40.407Z","0.3.0":"2014-04-11T22:34:55.461Z","0.2.2":"2014-04-08T13:53:46.644Z","0.2.1":"2014-03-24T14:06:35.136Z","0.2.0":"2014-02-15T21:39:23.178Z","0.1.2":"2014-02-04T21:03:17.088Z","0.1.1":"2014-02-04T20:02:13.757Z","0.1.0":"2014-02-02T15:47:58.857Z"},"versions":{"4.1.1":{"name":"object-assign","version":"4.1.1","description":"ES2015 `Object.assign()` ponyfill","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/object-assign.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava","bench":"matcha bench.js"},"files":["index.js"],"keywords":["object","assign","extend","properties","es2015","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"ava":"^0.16.0","lodash":"^4.16.4","matcha":"^0.7.0","xo":"^0.16.0"},"gitHead":"a89774b252c91612203876984bbd6addbe3b5a0e","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign#readme","_id":"object-assign@4.1.1","_shasum":"2109adc7965887cfc05cbbd442cac8bfbb360863","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"2109adc7965887cfc05cbbd442cac8bfbb360863","size":2675,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz","integrity":"sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/object-assign-4.1.1.tgz_1484580915042_0.07107710791751742"},"directories":{},"publish_time":1484580915282,"_hasShrinkwrap":false,"_cnpm_publish_time":1484580915282,"_cnpmcore_publish_time":"2021-12-13T09:51:08.189Z"},"4.1.0":{"name":"object-assign","version":"4.1.0","description":"ES2015 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/object-assign.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && mocha","bench":"matcha bench.js"},"files":["index.js"],"keywords":["object","assign","extend","properties","es2015","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"lodash":"^4.8.2","matcha":"^0.7.0","mocha":"*","xo":"*"},"gitHead":"72fe21c86911758f3342fdf41c2a57860d5829bc","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign#readme","_id":"object-assign@4.1.0","_shasum":"7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0","_from":".","_npmVersion":"2.14.19","_nodeVersion":"4.1.0","_npmUser":{"name":"spicyj","email":"ben@benalpert.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"dist":{"shasum":"7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0","size":3247,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-4.1.0.tgz","integrity":"sha512-Lbc7GfN7XFaK30bzUN3cDYLOkT0dH05S0ax1QikylHUD9+Z9PRF3G1iYwX3kcz+6AlzTFGkUgMxz6l3aUwbwTA=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/object-assign-4.1.0.tgz_1462212593641_0.3332549517508596"},"directories":{},"publish_time":1462212595804,"_hasShrinkwrap":false,"_cnpm_publish_time":1462212595804,"_cnpmcore_publish_time":"2021-12-13T09:51:08.466Z"},"4.0.1":{"name":"object-assign","version":"4.0.1","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/object-assign.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && mocha","bench":"matcha bench.js"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"lodash":"^3.10.1","matcha":"^0.6.0","mocha":"*","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"b0c40d37cbc43e89ad3326a9bad4c6b3133ba6d3","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign#readme","_id":"object-assign@4.0.1","_shasum":"99504456c3598b5cad4fc59c26e8a9bb107fe0bd","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"99504456c3598b5cad4fc59c26e8a9bb107fe0bd","size":2110,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-4.0.1.tgz","integrity":"sha512-c6legOHWepAbWnp3j5SRUMpxCXBKI4rD7A5Osn9IzZ8w4O/KccXdW0lqdkQKbpk0eHGjNgKihgzY6WuEq99Tfw=="},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1440074044010,"_hasShrinkwrap":false,"_cnpm_publish_time":1440074044010,"_cnpmcore_publish_time":"2021-12-13T09:51:08.816Z"},"4.0.0":{"name":"object-assign","version":"4.0.0","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/object-assign.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","bench":"matcha bench.js"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"lodash":"^3.10.1","matcha":"^0.6.0","mocha":"*"},"gitHead":"38bd16197af7cdfbf902d56197bde4fdc9ce4701","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign#readme","_id":"object-assign@4.0.0","_shasum":"1e876669ea263a6d4f37e9504dc859fefc7b4506","_from":".","_npmVersion":"2.13.5","_nodeVersion":"0.12.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"1e876669ea263a6d4f37e9504dc859fefc7b4506","size":2019,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-4.0.0.tgz","integrity":"sha512-Iejvk7ZL9eGjp6QU+Ep0deFdLnCJUKeMitmape/YRAYFNK3vI48uF3ckyWLbmHom4V7MOgPTH9lhubQYiC9D6w=="},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1440061565735,"_hasShrinkwrap":false,"_cnpm_publish_time":1440061565735,"_cnpmcore_publish_time":"2021-12-13T09:51:09.139Z"},"2.1.1":{"name":"object-assign","version":"2.1.1","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"gitHead":"4cd0365f5a78dd369473ca0bbd31f7b234148c42","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@2.1.1","_shasum":"43c36e5d569ff8e4816c4efa8be02d26967c18aa","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"43c36e5d569ff8e4816c4efa8be02d26967c18aa","size":1898,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-2.1.1.tgz","integrity":"sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g=="},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1433514388479,"_hasShrinkwrap":false,"_cnpm_publish_time":1433514388479,"_cnpmcore_publish_time":"2021-12-13T09:51:09.444Z"},"3.0.0":{"name":"object-assign","version":"3.0.0","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"gitHead":"02622dcb0d82bd81a071ed0b04fedf5e5eea7059","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@3.0.0","_shasum":"9bedd5ca0897949bca47e7ff408062d549f587f2","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"9bedd5ca0897949bca47e7ff408062d549f587f2","size":2007,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-3.0.0.tgz","integrity":"sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ=="},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1433426942051,"_hasShrinkwrap":false,"_cnpm_publish_time":1433426942051,"_cnpmcore_publish_time":"2021-12-13T09:51:09.754Z"},"2.0.0":{"name":"object-assign","version":"2.0.0","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"gitHead":"4cd0365f5a78dd369473ca0bbd31f7b234148c42","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@2.0.0","_shasum":"f8309b09083b01261ece3ef7373f2b57b8dd7042","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"dist":{"shasum":"f8309b09083b01261ece3ef7373f2b57b8dd7042","size":1211,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-2.0.0.tgz","integrity":"sha512-TTVfbeUpQoCNyoOddbCTlMYnK8LsIpLD72jtE6SjwYL2JRr7lskqbMghqdTFp9wHWrZAlDWYUJ1unzPnWWPWQA=="},"directories":{},"publish_time":1416627609589,"_hasShrinkwrap":false,"_cnpm_publish_time":1416627609589,"_cnpmcore_publish_time":"2021-12-13T09:51:10.094Z"},"1.0.0":{"name":"object-assign","version":"1.0.0","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"gitHead":"a17eef6882cf3ffcee46f7d9d5a5ba0abc6b029c","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@1.0.0","_shasum":"e65dc8766d3b47b4b8307465c8311da030b070a6","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"dist":{"shasum":"e65dc8766d3b47b4b8307465c8311da030b070a6","size":1248,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-1.0.0.tgz","integrity":"sha512-LpUkixU1BUMQ6bwUHbOue4IGGbdRbxi+IEZw7zHniw78erlxrKGHbhfLbHIsI35LGbGqys6QOrjVmLnD2ie+1A=="},"directories":{},"publish_time":1408013103502,"_hasShrinkwrap":false,"_cnpm_publish_time":1408013103502,"_cnpmcore_publish_time":"2021-12-13T09:51:10.494Z"},"0.4.0":{"name":"object-assign","version":"0.4.0","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"gitHead":"dc8cdabc34cab661419bffe01723a0d649255a2e","bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.4.0","_shasum":"e9ee69b52192780b4d062a3a86ac2fa2adc58951","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"dist":{"shasum":"e9ee69b52192780b4d062a3a86ac2fa2adc58951","size":1356,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.4.0.tgz","integrity":"sha512-tIZc30wg3KE13fsd1vp6iyc4fzS+NM6TDxB3YaOOQBeiUqgjoS6mX5DyU0MRCPQVXVhEcqupOoD4TZGBkKXH3w=="},"directories":{},"publish_time":1407916020902,"_hasShrinkwrap":false,"_cnpm_publish_time":1407916020902,"_cnpmcore_publish_time":"2021-12-13T09:51:10.902Z"},"0.3.1":{"name":"object-assign","version":"0.3.1","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.3.1","dist":{"shasum":"060e2a2a27d7c0d77ec77b78f11aa47fd88008d2","size":1354,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.3.1.tgz","integrity":"sha512-4gWmwoU6o9UImLLzq+8R+kzWT0ABYdKXuvSp08JpYzhibFvdUirMfE9nE5yYHcG1k9ClcVueR4TolZpRvwg5og=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1398897400407,"_hasShrinkwrap":false,"_cnpm_publish_time":1398897400407,"_cnpmcore_publish_time":"2021-12-13T09:51:11.312Z"},"0.3.0":{"name":"object-assign","version":"0.3.0","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.3.0","dist":{"shasum":"22f8550b76bf86679efd2117c568081ab302ac4d","size":1395,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.3.0.tgz","integrity":"sha512-uZGJfRFgToFrGGbFNryV2lenyGK11ffP8NgdxcFxqS0eXNIgwfMEPVxR2gRE1FZj9AXMvlwp9YkCuOhhtixJzQ=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1397255695461,"_hasShrinkwrap":false,"_cnpm_publish_time":1397255695461,"_cnpmcore_publish_time":"2021-12-13T09:51:11.714Z"},"0.2.2":{"name":"object-assign","version":"0.2.2","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.2.2","dist":{"shasum":"e0a78bc56af9c092051167f6b8f23249e7dde1a6","size":1416,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.2.2.tgz","integrity":"sha512-GBw66O/X6uqIpuonDvRD0mOCr54BalNuUxwrsyvbOeO+PxR3jAir1ETnJEgIwnGJjnrRjZtUeJd8NfyfnzfDaA=="},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1396965226644,"_hasShrinkwrap":false,"_cnpm_publish_time":1396965226644,"_cnpmcore_publish_time":"2021-12-13T09:51:12.079Z"},"0.2.1":{"name":"object-assign","version":"0.2.1","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.2.1","dist":{"shasum":"bd4dd0bab7fa495408d9781e8a9a2180d2bdae52","size":1449,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.2.1.tgz","integrity":"sha512-PgJQLmEIuEhyTHIGns0jYUGb9qDUTKYqfLOjSYte4zb6xzhYQ+VsluuAShEABkh2Xz2An79SGf4/ksxjfqa4lA=="},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1395669995136,"_hasShrinkwrap":false,"_cnpm_publish_time":1395669995136,"_cnpmcore_publish_time":"2021-12-13T09:51:12.511Z"},"0.2.0":{"name":"object-assign","version":"0.2.0","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.2.0","dist":{"shasum":"ab5833b3c86fb5b286c91fedc772e7939fc7b30c","size":1427,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.2.0.tgz","integrity":"sha512-cUklMd++52CmDhrrBPrWSgv8Qk21OP7fe34zEpnHPLAgx9lxbnUpejcSfQgkFE+zLz4RtqogezUabLzQfjKXFg=="},"_from":".","_npmVersion":"1.4.2","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1392500363178,"_hasShrinkwrap":false,"_cnpm_publish_time":1392500363178,"_cnpmcore_publish_time":"2021-12-13T09:51:12.924Z"},"0.1.2":{"name":"object-assign","version":"0.1.2","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.1.2","dist":{"shasum":"036992f073aff7b2db83d06b3fb3155a5ccac37f","size":1401,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.1.2.tgz","integrity":"sha512-tBiEbE5Yeu7sxExjNe2bceZsgGKJtrgUWtC2PqJsUdRAoPgrHRhd1R2pJ1Y/g3H1dxuaNqd6U6WV/vzS2wa14A=="},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1391547797088,"_hasShrinkwrap":false,"_cnpm_publish_time":1391547797088,"_cnpmcore_publish_time":"2021-12-13T09:51:13.408Z"},"0.1.1":{"name":"object-assign","version":"0.1.1","description":"ES6 Object.assign() ponyfill","license":"MIT","main":"object-assign.js","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.1.1","dist":{"shasum":"0eb570293ca87b272a0f3a62b50adb9a5f0a8f1a","size":1267,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.1.1.tgz","integrity":"sha512-+j27a/+Pal2/Q2gdNvo/qtrQtASikOLmv3GmfrDRIyWjmm9z+ZbH+UOmYnUg8KmBwfE9NmPlhWtmSSSNcgfKJg=="},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1391544133757,"_hasShrinkwrap":false,"_cnpm_publish_time":1391544133757,"_cnpmcore_publish_time":"2021-12-13T09:51:13.857Z"},"0.1.0":{"name":"object-assign","version":"0.1.0","description":"ES6 Object.assign() ponyfill","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/object-assign"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"files":["object-assign.js"],"keywords":["object","assign","extend","properties","es6","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"devDependencies":{"mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign","_id":"object-assign@0.1.0","dist":{"shasum":"d10994e1618922b563524299a272de5602f04ca0","size":1258,"noattachment":false,"tarball":"https://registry.npmmirror.com/object-assign/-/object-assign-0.1.0.tgz","integrity":"sha512-60VOGyo5lPaua1bxHeCrhKvcH3FcWP9Tvi2zrcyASFH12gzBsHaOcF+xuGDIb3y9LKKOwd4Y1eiqSJH1UtUrrA=="},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sophiebits","email":"npm@sophiebits.com"}],"directories":{},"publish_time":1391356078857,"_hasShrinkwrap":false,"_cnpm_publish_time":1391356078857,"_cnpmcore_publish_time":"2021-12-13T09:51:14.356Z"}},"bugs":{"url":"https://github.com/sindresorhus/object-assign/issues"},"homepage":"https://github.com/sindresorhus/object-assign#readme","keywords":["object","assign","extend","properties","es2015","ecmascript","harmony","ponyfill","prollyfill","polyfill","shim","browser"],"repository":{"type":"git","url":"git+https://github.com/sindresorhus/object-assign.git"},"_source_registry_name":"default"}