mirror of
https://github.com/denoland/deno.git
synced 2025-09-30 06:04:48 +00:00
refactor: move FileReader to op_crates/web (#7554)
This commit is contained in:
parent
38196f7850
commit
ec174170ba
6 changed files with 80 additions and 65 deletions
|
@ -23,7 +23,6 @@ delete Object.prototype.__proto__;
|
|||
const url = window.__bootstrap.url;
|
||||
const headers = window.__bootstrap.headers;
|
||||
const streams = window.__bootstrap.streams;
|
||||
const progressEvent = window.__bootstrap.progressEvent;
|
||||
const fileReader = window.__bootstrap.fileReader;
|
||||
const webSocket = window.__bootstrap.webSocket;
|
||||
const fetch = window.__bootstrap.fetch;
|
||||
|
@ -215,7 +214,7 @@ delete Object.prototype.__proto__;
|
|||
PerformanceEntry: util.nonEnumerable(performance.PerformanceEntry),
|
||||
PerformanceMark: util.nonEnumerable(performance.PerformanceMark),
|
||||
PerformanceMeasure: util.nonEnumerable(performance.PerformanceMeasure),
|
||||
ProgressEvent: util.nonEnumerable(progressEvent.ProgressEvent),
|
||||
ProgressEvent: util.nonEnumerable(ProgressEvent),
|
||||
ReadableStream: util.nonEnumerable(streams.ReadableStream),
|
||||
Request: util.nonEnumerable(fetch.Request),
|
||||
Response: util.nonEnumerable(fetch.Response),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue