summaryrefslogtreecommitdiff
path: root/cli/rt/90_deno_ns_unstable.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-07-23 11:12:25 -0400
committerGitHub <noreply@github.com>2020-07-23 11:12:25 -0400
commit218be6a269644a95bdef7fc678b5618d5d7ce9a7 (patch)
tree4fb0a7bccd2a87ef16df83a9fd61fc06885fdff8 /cli/rt/90_deno_ns_unstable.js
parentca4dcb36dd5be0b14a2fafa059ea02ee7e0a0262 (diff)
Don't use window.__base64. Combine deno_ns scripts. (#6858)
Diffstat (limited to 'cli/rt/90_deno_ns_unstable.js')
-rw-r--r--cli/rt/90_deno_ns_unstable.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/cli/rt/90_deno_ns_unstable.js b/cli/rt/90_deno_ns_unstable.js
deleted file mode 100644
index 722effeaf..000000000
--- a/cli/rt/90_deno_ns_unstable.js
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-// This module exports unstable Deno APIs.
-((window) => {
- window.__bootstrap.denoNsUnstable = {
- signal: window.__bootstrap.signals.signal,
- signals: window.__bootstrap.signals.signals,
- Signal: window.__bootstrap.signals.Signal,
- SignalStream: window.__bootstrap.signals.SignalStream,
- transpileOnly: window.__bootstrap.compilerApi.transpileOnly,
- compile: window.__bootstrap.compilerApi.compile,
- bundle: window.__bootstrap.compilerApi.bundle,
- permissions: window.__bootstrap.permissions.permissions,
- Permissions: window.__bootstrap.permissions.Permissions,
- PermissionStatus: window.__bootstrap.permissions.PermissionStatus,
- openPlugin: window.__bootstrap.plugins.openPlugin,
- kill: window.__bootstrap.process.kill,
- setRaw: window.__bootstrap.tty.setRaw,
- consoleSize: window.__bootstrap.tty.consoleSize,
- DiagnosticCategory: window.__bootstrap.diagnostics.DiagnosticCategory,
- loadavg: window.__bootstrap.os.loadavg,
- hostname: window.__bootstrap.os.hostname,
- osRelease: window.__bootstrap.os.osRelease,
- applySourceMap: window.__bootstrap.errorStack.opApplySourceMap,
- formatDiagnostics: window.__bootstrap.errorStack.opFormatDiagnostics,
- shutdown: window.__bootstrap.net.shutdown,
- ShutdownMode: window.__bootstrap.net.ShutdownMode,
- listen: window.__bootstrap.netUnstable.listen,
- connect: window.__bootstrap.netUnstable.connect,
- listenDatagram: window.__bootstrap.netUnstable.listenDatagram,
- startTls: window.__bootstrap.tls.startTls,
- fstatSync: window.__bootstrap.fs.fstatSync,
- fstat: window.__bootstrap.fs.fstat,
- ftruncateSync: window.__bootstrap.fs.ftruncateSync,
- ftruncate: window.__bootstrap.fs.ftruncate,
- umask: window.__bootstrap.fs.umask,
- link: window.__bootstrap.fs.link,
- linkSync: window.__bootstrap.fs.linkSync,
- utime: window.__bootstrap.fs.utime,
- utimeSync: window.__bootstrap.fs.utimeSync,
- symlink: window.__bootstrap.fs.symlink,
- symlinkSync: window.__bootstrap.fs.symlinkSync,
- fdatasyncSync: window.__bootstrap.fs.fdatasyncSync,
- fdatasync: window.__bootstrap.fs.fdatasync,
- fsyncSync: window.__bootstrap.fs.fsyncSync,
- fsync: window.__bootstrap.fs.fsync,
- };
-})(this);