理想情况下,我们可以使用Function.prototype.bind
函数进行此操作。我也不认为这里有使用粗箭头功能的明确方法。 Ycombinator的魔力?
这是我到目前为止尝试过的:
(function pump () {
return browserReadableStreamReader.read().then(({ done, value }) => {
if (done) {
return this.end()
}
this.write(value)
return pump()
})
}).bind(this)()
答案 0 :(得分:0)
这就是我所做的:
const { PassThrough } = require('stream')
/**
* Google Chrome ReadableStream PassThrough implementation
* @extends PassThrough
*/
class BrowserPassThrough extends PassThrough {
/**
* @param {Object} options - options to pass to PassThrough
* @param {ReadableStreamDefaultReader} browserReadableStreamReader - reader
*/
constructor (options, browserReadableStreamReader) {
super(options)
this.reader = browserReadableStreamReader
this.pump()
}
pump () {
this.reader.read().then(({ done, value }) => {
if (done) {
return this.end()
}
this.write(value)
this.pump()
})
}
}
module.exports = BrowserPassThrough