(data)
| 12261 | var utils = require('./utils'); |
| 12262 | |
| 12263 | function DataReader(data) { |
| 12264 | this.data = null; // type : see implementation |
| 12265 | this.length = 0; |
| 12266 | this.index = 0; |
| 12267 | } |
| 12268 | DataReader.prototype = { |
| 12269 | /** |
| 12270 | * Check that the offset will not go too far. |
nothing calls this directly
no outgoing calls
no test coverage detected