open-next-cdk
Version:
Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK
19 lines (18 loc) • 537 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageDecoderStream = void 0;
class MessageDecoderStream {
constructor(options) {
this.options = options;
}
[Symbol.asyncIterator]() {
return this.asyncIterator();
}
async *asyncIterator() {
for await (const bytes of this.options.inputStream) {
const decoded = this.options.decoder.decode(bytes);
yield decoded;
}
}
}
exports.MessageDecoderStream = MessageDecoderStream;