mirror of
https://github.com/denoland/deno.git
synced 2025-08-01 17:42:32 +00:00
Switch back to recv/send instead of pub/sub for low-level API.
This commit is contained in:
parent
7fcaf7d35d
commit
a33f575cda
9 changed files with 79 additions and 78 deletions
|
@ -8,7 +8,7 @@ const window = globalEval("this");
|
|||
|
||||
window["denoMain"] = () => {
|
||||
deno.print(`ts.version: ${ts.version}`);
|
||||
const res = deno.pub("startDeno2", emptyArrayBuffer());
|
||||
const res = deno.send("startDeno2", emptyArrayBuffer());
|
||||
// deno.print(`after`);
|
||||
const resUi8 = new Uint8Array(res);
|
||||
deno.print(`before`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue