source: imaps-frontend/node_modules/object.assign/index.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 532 bytes
RevLine 
[d565449]1'use strict';
2
3var defineProperties = require('define-properties');
4var callBind = require('call-bind');
5
6var implementation = require('./implementation');
7var getPolyfill = require('./polyfill');
8var shim = require('./shim');
9
10var polyfill = callBind.apply(getPolyfill());
11// eslint-disable-next-line no-unused-vars
12var bound = function assign(target, source1) {
13 return polyfill(Object, arguments);
14};
15
16defineProperties(bound, {
17 getPolyfill: getPolyfill,
18 implementation: implementation,
19 shim: shim
20});
21
22module.exports = bound;
Note: See TracBrowser for help on using the repository browser.