summaryrefslogtreecommitdiff
path: root/runtime/js/00_bootstrap_namespace.js
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-04-30 14:13:23 +0200
committerGitHub <noreply@github.com>2021-04-30 08:13:23 -0400
commit8922639c1dc48a8b1ed6910bfe62306d9178d70b (patch)
tree7f228a98f0b0ee043626a35a26879b5b7a78b25f /runtime/js/00_bootstrap_namespace.js
parenta50dab683f0d902bcfab53ac5a351c661d816354 (diff)
refactor(core.js): provide window.__bootstrap (#10423)
Diffstat (limited to 'runtime/js/00_bootstrap_namespace.js')
-rw-r--r--runtime/js/00_bootstrap_namespace.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/runtime/js/00_bootstrap_namespace.js b/runtime/js/00_bootstrap_namespace.js
deleted file mode 100644
index d10360974..000000000
--- a/runtime/js/00_bootstrap_namespace.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-
-// The only purpose of this file is to set up "globalThis.__bootstrap" namespace,
-// that is used by scripts in this directory to reference exports between
-// the files.
-
-// This namespace is removed during runtime bootstrapping process.
-"use strict";
-
-globalThis.__bootstrap = globalThis.__bootstrap || {};