mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 13:14:48 +00:00
Import ts file from prototype without change
From commit 559453cf6c
Excluding v8worker.d.ts, main.ts, and deno.d.ts.
Updates tslint.json to be original settings.
This commit is contained in:
parent
21e1425656
commit
fe404dfce9
16 changed files with 1374 additions and 73 deletions
|
@ -25,9 +25,9 @@ window["denoMain"] = () => {
|
|||
|
||||
const argv: string[] = [];
|
||||
for (let i = 0; i < msg.startArgvLength(); i++) {
|
||||
const arg = msg.startArgv(i);
|
||||
deno.print(`argv[${i}] ${arg}`);
|
||||
argv.push(msg.startArgv(i));
|
||||
}
|
||||
deno.print(`argv ${argv}`);
|
||||
};
|
||||
|
||||
function typedArrayToArrayBuffer(ta: Uint8Array): ArrayBuffer {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue