Files
codeql-action/node_modules/object.assign/index.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
532 B
JavaScript
Raw Normal View History

2020-09-14 10:42:37 +01:00
'use strict';
var defineProperties = require('define-properties');
2021-07-27 16:54:26 +00:00
var callBind = require('call-bind');
2020-09-14 10:42:37 +01:00
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var polyfill = callBind.apply(getPolyfill());
// eslint-disable-next-line no-unused-vars
var bound = function assign(target, source1) {
return polyfill(Object, arguments);
};
defineProperties(bound, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = bound;