@mauna/reason-web-streams
v0.1.10-development
Published
Web Streams Polyfill bindings for Reasonml
Downloads
8
Keywords
Readme
@mauna/reason-web-streams
ReasonWebStreams is the Reason bindings for web-streams-polyfill.
Install
npm i @mauna/reason-web-streams
Add it to bsconfig.json
"bs-dependencies": [
+ "@mauna/reason-web-streams",
]
You can now use the MaunaReasonWebStreams module.
Usage
open MaunaReasonWebStreams
let underlyingSource: ReadableStream.underlyingSource('a) = {
start: None,
pull: None,
cancel: None,
type_: None,
};
let strategy: ReadableStream.queuingStrategy('a) = {
highWaterMark: None,
size: None,
};
let readable =
ReadableStream.make(~underlyingSource, ~strategy=Some(strategy), ());