| 3 | import { Transform } from 'stream'; |
| 4 | |
| 5 | export default class ReadToEnd extends Transform { |
| 6 | constructor(options = {}) { |
| 7 | super(options); |
| 8 | this._encoding = options.encoding || 'utf8'; |
nothing calls this directly
no outgoing calls
no test coverage detected