astro-ghostcms/.pnpm-store/v3/files/d2/3170bcef0663ea658bde1f0044a...

12 lines
254 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/* eslint no-negated-condition: 0, no-new-func: 0 */
'use strict';
if (typeof self !== 'undefined') {
module.exports = self;
} else if (typeof window !== 'undefined') {
module.exports = window;
} else {
module.exports = Function('return this')();
}