summaryrefslogtreecommitdiff
path: root/cli/rt/27_websocket.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/rt/27_websocket.js')
-rw-r--r--cli/rt/27_websocket.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/rt/27_websocket.js b/cli/rt/27_websocket.js
index d7fc03169..ee114170d 100644
--- a/cli/rt/27_websocket.js
+++ b/cli/rt/27_websocket.js
@@ -2,7 +2,6 @@
((window) => {
const core = window.Deno.core;
- const { close } = window.__bootstrap.resources;
const { requiredArguments } = window.__bootstrap.webUtil;
const CONNECTING = 0;
const OPEN = 1;
@@ -71,7 +70,7 @@
event.target = this;
this.onclose?.(event);
this.dispatchEvent(event);
- close(this.#rid);
+ core.close(this.#rid);
});
const event = new Event("error");
@@ -242,7 +241,7 @@
event.target = this;
this.onclose?.(event);
this.dispatchEvent(event);
- close(this.#rid);
+ core.close(this.#rid);
});
}
}