1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/op_crates/url
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
..
00_url.js feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
Cargo.toml chore: bump dependent crates for cli (#9964) 2021-04-02 22:22:08 +11:00
internal.d.ts chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00
lib.deno_url.d.ts feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
lib.rs refactor: convert ops to use serde_v8 (#10009) 2021-04-05 18:40:24 +02:00
README.md chore: split web op crate (#9635) 2021-03-12 16:17:18 +01:00

deno_url

This crate implements the URL API for Deno.

Spec: https://url.spec.whatwg.org/