Files
release-action/node_modules/global/document.js
Nick Cipollo 4c1d33eaa1
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Prepare 1.8.0 release
2021-02-10 13:56:00 -05:00

18 lines
392 B
JavaScript

var topLevel = typeof global !== 'undefined' ? global :
typeof window !== 'undefined' ? window : {}
var minDoc = require('min-document');
var doccy;
if (typeof document !== 'undefined') {
doccy = document;
} else {
doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'];
if (!doccy) {
doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'] = minDoc;
}
}
module.exports = doccy;