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, 0 insertions, 17 deletions
diff --git a/node_modules/global/document.js b/node_modules/global/document.js
deleted file mode 100644
index 7c0f50dc5..000000000
--- a/node_modules/global/document.js
+++ /dev/null
@@ -1,17 +0,0 @@
-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;