astro-ghostcms/.pnpm-store/v3/files/44/8625546d19da88a2921aad0da91...

15 lines
331 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, { fromEntries: polyfill }, {
fromEntries: function testEntries() {
return Object.fromEntries !== polyfill;
}
});
return polyfill;
};