mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 05:49:20 -05:00
14 lines
428 B
JavaScript
14 lines
428 B
JavaScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
// This module exports stable Deno APIs.
|
||
|
|
||
|
((window) => {
|
||
|
window.__bootstrap.denoNs = {
|
||
|
version: window.__bootstrap.version.version,
|
||
|
build: window.__bootstrap.build.build,
|
||
|
errors: window.__bootstrap.errors.errors,
|
||
|
customInspect: window.__bootstrap.console.customInspect,
|
||
|
inspect: window.__bootstrap.console.inspect,
|
||
|
};
|
||
|
})(this);
|