astro-ghostcms/.pnpm-store/v3/files/84/edb2df362b42d2cf1713c8919df...

15 lines
319 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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;
};