chao faf16d266e update | преди 6 месеца | |
---|---|---|
.. | ||
src | преди 6 месеца | |
.npmignore | преди 6 месеца | |
CHANGELOG.json | преди 6 месеца | |
CHANGELOG.md | преди 6 месеца | |
LICENSE | преди 6 месеца | |
README.md | преди 6 месеца | |
jest.config.js | преди 6 месеца | |
package.json | преди 6 месеца | |
tsconfig.build.json | преди 6 месеца | |
tsconfig.json | преди 6 месеца | |
tsconfig.test.json | преди 6 месеца |
Some useful extensions for Web Streams API.
Currently it's using web-streams-polyfill because it's hard to load native implementations from both browsers and Node.js. (An experimental implementation using Top Level Await is available in native.ts
, but not exported).
BufferedReadableStream
Allowing reading specified amount of data by buffering incoming data.
It's not a Web Stream API ReadableStream
, because ReadableStream
doesn't allow hinting the desired read size (except using BYOB readable, but causes extra allocations for small reads).