UNPKG

300 BJavaScriptView Raw
1'use strict';
2
3var getPolyfill = require('./polyfill');
4var define = require('define-properties');
5
6module.exports = function shimEntries() {
7 var polyfill = getPolyfill();
8 define(Object, { entries: polyfill }, { entries: function () { return Object.entries !== polyfill; } });
9 return polyfill;
10};