* Custion readable constructor * @param {object} opt options * @constructor
(opt)
| 95 | * @constructor |
| 96 | */ |
| 97 | function CustomReadable(opt) { |
| 98 | Readable.call(this, opt); |
| 99 | this._max = 2; |
| 100 | this._index = 1; |
| 101 | } |
| 102 | |
| 103 | util.inherits(CustomReadable, Readable); |
| 104 |
nothing calls this directly
no outgoing calls
no test coverage detected