mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 12:58:54 -05:00
doc: add stream api (#5418)
This commit is contained in:
parent
3e07e0b01d
commit
8c45d3a06d
1 changed files with 5 additions and 3 deletions
|
@ -20,9 +20,6 @@ Some of the Web APIs are using ops under the hood, eg. `console`, `performance`.
|
||||||
to work with DOM events
|
to work with DOM events
|
||||||
- **Implementation notes:** There is no DOM hierarchy in Deno, so there is no
|
- **Implementation notes:** There is no DOM hierarchy in Deno, so there is no
|
||||||
tree for Events to bubble/capture through.
|
tree for Events to bubble/capture through.
|
||||||
- [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) and
|
|
||||||
[URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams):
|
|
||||||
to construct and parse URLSs
|
|
||||||
- [fetch](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch),
|
- [fetch](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch),
|
||||||
[Request](https://developer.mozilla.org/en-US/docs/Web/API/Request),
|
[Request](https://developer.mozilla.org/en-US/docs/Web/API/Request),
|
||||||
[Response](https://developer.mozilla.org/en-US/docs/Web/API/Response),
|
[Response](https://developer.mozilla.org/en-US/docs/Web/API/Response),
|
||||||
|
@ -38,6 +35,11 @@ Some of the Web APIs are using ops under the hood, eg. `console`, `performance`.
|
||||||
[clearTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout):
|
[clearTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearTimeout):
|
||||||
scheduling callbacks in future and
|
scheduling callbacks in future and
|
||||||
[clearInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval)
|
[clearInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval)
|
||||||
|
- [Stream](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) for
|
||||||
|
creating, composing, and consuming streams of data
|
||||||
|
- [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) and
|
||||||
|
[URLSearchParams](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams):
|
||||||
|
to construct and parse URLSs
|
||||||
- [Worker](https://developer.mozilla.org/en-US/docs/Web/API/Worker): executing
|
- [Worker](https://developer.mozilla.org/en-US/docs/Web/API/Worker): executing
|
||||||
additional code in a separate thread
|
additional code in a separate thread
|
||||||
- **Implementation notes:** Blob URLs are not supported, object ownership
|
- **Implementation notes:** Blob URLs are not supported, object ownership
|
||||||
|
|
Loading…
Reference in a new issue