aboutsummaryrefslogtreecommitdiff
path: root/node_modules/global/document.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/global/document.js')
-rw-r--r--node_modules/global/document.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/global/document.js b/node_modules/global/document.js
new file mode 100644
index 000000000..7c0f50dc5
--- /dev/null
+++ b/node_modules/global/document.js
@@ -0,0 +1,17 @@
+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;