summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/streaming/polyfills.js
blob: a9a044a3e99c699ac0efa4d2601831ac6d35f27c (plain)
1
2
3
4
5
import { createReadableStreamWrapper } from '@mattiasbuelens/web-streams-adapter';
import { ReadableStream as PolyfillReadableStream } from 'web-streams-polyfill';

// TODO: remove this when our WebStreams API reaches 100% support
export const toPolyfillReadable = createReadableStreamWrapper(PolyfillReadableStream);