mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
dda0f1c343
`ZeroCopyBuf` was convenient to use, but sometimes it did hide details that some copies were necessary in certain cases. Also it made it way to easy for the caller to pass around and convert into different values. This commit splits `ZeroCopyBuf` into `JsBuffer` (an array buffer coming from V8) and `ToJsBuffer` (a Rust buffer that will be converted into a V8 array buffer). As a result some magical conversions were removed (they were never used) limiting the API surface and preparing for changes in #19534. |
||
---|---|---|
.. | ||
01_broadcast_channel.js | ||
Cargo.toml | ||
in_memory_broadcast_channel.rs | ||
lib.deno_broadcast_channel.d.ts | ||
lib.rs | ||
README.md |
deno_broadcast_channel
This crate implements the BroadcastChannel functions of Deno.
Spec: https://html.spec.whatwg.org/multipage/web-messaging.html