summaryrefslogtreecommitdiff
path: root/cli/js/ops/fetch.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-03-08 13:09:22 +0100
committerGitHub <noreply@github.com>2020-03-08 13:09:22 +0100
commit1b6f8318750d319d689f7eeef9e7e1f2e56b94a6 (patch)
treeb2e182b77cfbcd25ee893113de9f61509e16e787 /cli/js/ops/fetch.ts
parentb9037c86ed8d1d55a59a1c1298fa12bbfcae6873 (diff)
reorg: move JS ops implementations to cli/js/ops/, part 1 (#4264)
Following JS ops were moved to separate files in cli/js/ops directory: - compiler - dispatch_json - dispatch_minimal - errors - fetch - fs_events - os - random - repl - resources - runtime_compiler - runtime - tty
Diffstat (limited to 'cli/js/ops/fetch.ts')
-rw-r--r--cli/js/ops/fetch.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/cli/js/ops/fetch.ts b/cli/js/ops/fetch.ts
new file mode 100644
index 000000000..c5c0cb883
--- /dev/null
+++ b/cli/js/ops/fetch.ts
@@ -0,0 +1,28 @@
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+
+import { sendAsync } from "./dispatch_json.ts";
+
+interface FetchRequest {
+ url: string;
+ method: string | null;
+ headers: Array<[string, string]>;
+}
+
+export interface FetchResponse {
+ bodyRid: number;
+ status: number;
+ statusText: string;
+ headers: Array<[string, string]>;
+}
+
+export async function fetch(
+ args: FetchRequest,
+ body: ArrayBufferView | undefined
+): Promise<FetchResponse> {
+ let zeroCopy = undefined;
+ if (body) {
+ zeroCopy = new Uint8Array(body.buffer, body.byteOffset, body.byteLength);
+ }
+
+ return await sendAsync("op_fetch", args, zeroCopy);
+}