(opts)
| 120 | |
| 121 | class BabelifyStream extends stream.Transform { |
| 122 | constructor(opts) { |
| 123 | super(); |
| 124 | this._data = []; |
| 125 | this._opts = opts; |
| 126 | } |
| 127 | |
| 128 | _transform(buf, enc, callback) { |
| 129 | this._data.push(buf); |
nothing calls this directly
no outgoing calls
no test coverage detected