mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
22 lines
601 B
JavaScript
22 lines
601 B
JavaScript
import { Writable as WritableStream } from 'readable-stream'
|
|
import promiseToCallback from 'promise-to-callback'
|
|
|
|
class AsyncWritableStream extends WritableStream {
|
|
|
|
constructor (asyncWriteFn, _opts) {
|
|
const opts = Object.assign({ objectMode: true }, _opts)
|
|
super(opts)
|
|
this._asyncWriteFn = asyncWriteFn
|
|
}
|
|
|
|
// write from incoming stream to state
|
|
_write (chunk, encoding, callback) {
|
|
promiseToCallback(this._asyncWriteFn(chunk, encoding))(callback)
|
|
}
|
|
|
|
}
|
|
|
|
export default function createStreamSink (asyncWriteFn, _opts) {
|
|
return new AsyncWritableStream(asyncWriteFn, _opts)
|
|
}
|