Lobashov_Ivan_PIBD-21_IP/Lab2/node_modules/.object.fromentries-L1lGqspX/shim.js

15 lines
331 B
JavaScript
Raw Normal View History

2024-01-10 22:39:31 +04:00
'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimEntries() {
var polyfill = getPolyfill();
define(Object, { fromEntries: polyfill }, {
fromEntries: function testEntries() {
return Object.fromEntries !== polyfill;
}
});
return polyfill;
};