(data)
| 2 | var utils = require("../utils"); |
| 3 | |
| 4 | function DataReader(data) { |
| 5 | this.data = data; // type : see implementation |
| 6 | this.length = data.length; |
| 7 | this.index = 0; |
| 8 | this.zero = 0; |
| 9 | } |
| 10 | DataReader.prototype = { |
| 11 | /** |
| 12 | * Check that the offset will not go too far. |
nothing calls this directly
no outgoing calls
no test coverage detected