WUT_Computer_Science/EGUI/lab3/front/node_modules/object.fromentries/shim.js
2022-06-15 03:02:51 +02:00

15 lines
331 B
JavaScript

'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;
};