astro-ghostcms/.pnpm-store/v3/files/43/62c5d5bf9d47eb59e557e8f87a7...

19 lines
421 B
Plaintext

'use strict';
var callBind = require('call-bind');
var define = require('define-properties');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var bound = callBind(getPolyfill(), typeof Reflect === 'object' ? Reflect : Object);
define(bound, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = bound;