(data)
| 13657 | var DataReader = require('./dataReader'); |
| 13658 | |
| 13659 | function Uint8ArrayReader(data) { |
| 13660 | if (data) { |
| 13661 | this.data = data; |
| 13662 | this.length = this.data.length; |
| 13663 | this.index = 0; |
| 13664 | } |
| 13665 | } |
| 13666 | Uint8ArrayReader.prototype = new DataReader(); |
| 13667 | /** |
| 13668 | * @see DataReader.byteAt |
nothing calls this directly
no outgoing calls
no test coverage detected