diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-30 14:13:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 08:13:23 -0400 |
commit | 8922639c1dc48a8b1ed6910bfe62306d9178d70b (patch) | |
tree | 7f228a98f0b0ee043626a35a26879b5b7a78b25f /runtime/js/00_bootstrap_namespace.js | |
parent | a50dab683f0d902bcfab53ac5a351c661d816354 (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.js | 10 |
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 || {}; |