blob: 135defefd0eb2391478b1adedccc63a6e619a664 [file] [log] [blame]
'use strict';
var getPolyfill = require('./polyfill');
var define = require('define-properties');
module.exports = function shimEntries() {
var polyfill = getPolyfill();
define(Object, { entries: polyfill }, {
entries: function testEntries() {
return Object.entries !== polyfill;
}
});
return polyfill;
};