# web-streams-polyfill
Web Streams, based on the WHATWG spec reference implementation.
## Links
- [Official spec](https://streams.spec.whatwg.org/)
- [Reference implementation](https://github.com/whatwg/streams)
## Usage
For node.js / browserify users:
```javascript
var streams = require("web-streams-polyfill");
var readable = new streams.ReadableStream;
// Or, in ES6
import { ReadableStream } from "web-streams-polyfill";
```
For use as polyfill, include the `dist/polyfill.min.js` file in your html before your main script.
```html
```
## Contributors
Thanks to these people for their contributions:
- Anders Riutta [ariutta](https://github.com/ariutta)