summaryrefslogtreecommitdiff
path: root/js/libdeno.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-08 13:56:56 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-07 21:56:56 -0500
commit24d6bf6aeb2b9ac929808e2b8ae4cd5e844a9f8b (patch)
tree45047054bad41f3e27ae51759d5055879af0b243 /js/libdeno.ts
parentcd1992aeaab92c4446ac289bced3ec548050467d (diff)
Remove 'deno' builtin module (#1895)
Diffstat (limited to 'js/libdeno.ts')
-rw-r--r--js/libdeno.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/libdeno.ts b/js/libdeno.ts
index 61e259b54..ee43413f3 100644
--- a/js/libdeno.ts
+++ b/js/libdeno.ts
@@ -24,9 +24,6 @@ interface Libdeno {
shared: ArrayBuffer;
- // DEPRECATED
- builtinModules: { [s: string]: object };
-
/** Evaluate provided code in the current context.
* It differs from eval(...) in that it does not create a new context.
* Returns an array: [output, errInfo].