UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

22 lines (16 loc) • 424 B
/* eslint-disable no-underscore-dangle */ 'use strict'; const { Transform } = require('stream'); class DummyParser extends Transform { constructor(incomingForm, options = {}) { super(); this.globalOptions = { ...options }; this.incomingForm = incomingForm; } _flush(callback) { this.incomingForm.ended = true; this.incomingForm._maybeEnd(); callback(); } } module.exports = DummyParser;