mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
move Web APIs to cli/js/web/
This commit is contained in:
parent
9b59ed7c79
commit
2e59007214
55 changed files with 207 additions and 248 deletions
|
@ -1,60 +0,0 @@
|
|||
// Forked from https://github.com/stardazed/sd-streams/tree/8928cf04b035fd02fb1340b7eb541c76be37e546
|
||||
// Copyright (c) 2018-Present by Arthur Langereis - @zenmumbler MIT
|
||||
|
||||
/**
|
||||
* streams/readable-stream-byob-request - ReadableStreamBYOBRequest class implementation
|
||||
* Part of Stardazed
|
||||
* (c) 2018-Present by Arthur Langereis - @zenmumbler
|
||||
* https://github.com/stardazed/sd-streams
|
||||
*/
|
||||
|
||||
import * as rs from "./readable-internals.ts";
|
||||
|
||||
export class ReadableStreamBYOBRequest {
|
||||
[rs.associatedReadableByteStreamController_]:
|
||||
| rs.SDReadableByteStreamController
|
||||
| undefined;
|
||||
[rs.view_]: ArrayBufferView | undefined;
|
||||
|
||||
constructor() {
|
||||
throw new TypeError();
|
||||
}
|
||||
|
||||
get view(): ArrayBufferView {
|
||||
if (!rs.isReadableStreamBYOBRequest(this)) {
|
||||
throw new TypeError();
|
||||
}
|
||||
return this[rs.view_]!;
|
||||
}
|
||||
|
||||
respond(bytesWritten: number): void {
|
||||
if (!rs.isReadableStreamBYOBRequest(this)) {
|
||||
throw new TypeError();
|
||||
}
|
||||
if (this[rs.associatedReadableByteStreamController_] === undefined) {
|
||||
throw new TypeError();
|
||||
}
|
||||
// If! IsDetachedBuffer(this.[[view]].[[ViewedArrayBuffer]]) is true, throw a TypeError exception.
|
||||
return rs.readableByteStreamControllerRespond(
|
||||
this[rs.associatedReadableByteStreamController_]!,
|
||||
bytesWritten
|
||||
);
|
||||
}
|
||||
|
||||
respondWithNewView(view: ArrayBufferView): void {
|
||||
if (!rs.isReadableStreamBYOBRequest(this)) {
|
||||
throw new TypeError();
|
||||
}
|
||||
if (this[rs.associatedReadableByteStreamController_] === undefined) {
|
||||
throw new TypeError();
|
||||
}
|
||||
if (!ArrayBuffer.isView(view)) {
|
||||
throw new TypeError("view parameter must be a TypedArray");
|
||||
}
|
||||
// If! IsDetachedBuffer(view.[[ViewedArrayBuffer]]) is true, throw a TypeError exception.
|
||||
return rs.readableByteStreamControllerRespondWithNewView(
|
||||
this[rs.associatedReadableByteStreamController_]!,
|
||||
view
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue