Files
release-action/node_modules/global/document.js
Nick Cipollo e75a11bff3
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Create 1.4.0 release
2019-12-13 16:07:38 -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;