summaryrefslogtreecommitdiff
path: root/together/node_modules/formidable/src/parsers/OctetStream.js
blob: cdf55f23ef38644a44dd9b85869adf1f7e9e1673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

const { PassThrough } = require('stream');

class OctetStreamParser extends PassThrough {
  constructor(options = {}) {
    super();
    this.globalOptions = { ...options };
  }
}

module.exports = OctetStreamParser;