mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
2e74f164b6
This commit moves Deno JS runtime, ops, permissions and inspector implementation to new "deno_runtime" crate located in "runtime/" directory. Details in "runtime/README.md". Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
9 lines
370 B
JavaScript
9 lines
370 B
JavaScript
// Copyright 2018-2020 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.
|
|
|
|
globalThis.__bootstrap = globalThis.__bootstrap || {};
|