1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 01:29:14 -05:00
denoland-deno/op_crates/file
Luca Casonato 966ce7de8a
feat: blob URL support (#10045)
This commit adds blob URL support. Blob URLs are stored in a process
global storage, that can be accessed from all workers, and the module
loader. Blob URLs can be created using `URL.createObjectURL` and revoked
using `URL.revokeObjectURL`.

This commit does not add support for `fetch`ing blob URLs. This will be
added in a follow up commit.
2021-04-07 15:22:14 +02:00
..
01_file.js refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
02_filereader.js refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
03_blob_url.js feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
Cargo.toml feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
internal.d.ts refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
lib.deno_file.d.ts refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
lib.rs feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
README.md refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00

deno_file

This crate implements the File API.

Spec: https://w3c.github.io/FileAPI