astro-ghostcms/.pnpm-store/v3/files/ac/4425083d2eb51be6a16bf4f5f5d...

15 lines
314 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 shimValues() {
var polyfill = getPolyfill();
define(Object, { values: polyfill }, {
values: function testValues() {
return Object.values !== polyfill;
}
});
return polyfill;
};