mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
fix: primordials in extensions/net (#11250)
This commit is contained in:
parent
51de4e1f7c
commit
425b9a8228
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
const {
|
||||
PromiseResolve,
|
||||
Symbol,
|
||||
SymbolAsyncIterator,
|
||||
Uint8Array,
|
||||
TypedArrayPrototypeSubarray,
|
||||
} = window.__bootstrap.primordials;
|
||||
|
@ -141,7 +142,7 @@
|
|||
core.close(this.rid);
|
||||
}
|
||||
|
||||
[Symbol.asyncIterator]() {
|
||||
[SymbolAsyncIterator]() {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue