UNPKG

formidable

Version:

A node.js module for parsing form data, especially file uploads.

11 lines (8 loc) 215 B
import { PassThrough } from 'node:stream'; class OctetStreamParser extends PassThrough { constructor(options = {}) { super(); this.globalOptions = { ...options }; } } export default OctetStreamParser;