(data)
| 12633 | var Uint8ArrayReader = require('./uint8ArrayReader'); |
| 12634 | |
| 12635 | function NodeBufferReader(data) { |
| 12636 | this.data = data; |
| 12637 | this.length = this.data.length; |
| 12638 | this.index = 0; |
| 12639 | } |
| 12640 | NodeBufferReader.prototype = new Uint8ArrayReader(); |
| 12641 | |
| 12642 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected