2020-03-08 13:09:22 +01:00
|
|
|
// 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]>;
|
|
|
|
}
|
|
|
|
|
2020-03-20 14:38:34 +01:00
|
|
|
export function fetch(
|
2020-03-08 13:09:22 +01:00
|
|
|
args: FetchRequest,
|
2020-07-14 15:24:17 -04:00
|
|
|
body?: ArrayBufferView,
|
2020-03-08 13:09:22 +01:00
|
|
|
): Promise<FetchResponse> {
|
2020-07-07 04:45:39 +03:00
|
|
|
let zeroCopy;
|
|
|
|
if (body != null) {
|
2020-03-08 13:09:22 +01:00
|
|
|
zeroCopy = new Uint8Array(body.buffer, body.byteOffset, body.byteLength);
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:20:47 +02:00
|
|
|
return sendAsync("op_fetch", args, ...(zeroCopy ? [zeroCopy] : []));
|
2020-03-08 13:09:22 +01:00
|
|
|
}
|