source: trip-planner-front/node_modules/object.assign/index.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 532 bytes
Line 
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.