Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/object.assign/shim.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

15 lines
305 B
JavaScript

'use strict';
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shimAssign() {
var polyfill = getPolyfill();
define(
Object,
{ assign: polyfill },
{ assign: function () { return Object.assign !== polyfill; } }
);
return polyfill;
};