UNPKG

recoder-code

Version:

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

13 lines (9 loc) • 232 B
'use strict'; const { PassThrough } = require('stream'); class OctetStreamParser extends PassThrough { constructor(options = {}) { super(); this.globalOptions = { ...options }; } } module.exports = OctetStreamParser;