mirror of https://github.com/ColorlibHQ/gentelella
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
545 B
22 lines
545 B
'use strict';
|
|
var Uint8ArrayReader = require('./uint8ArrayReader');
|
|
|
|
function NodeBufferReader(data) {
|
|
this.data = data;
|
|
this.length = this.data.length;
|
|
this.index = 0;
|
|
this.zero = 0;
|
|
}
|
|
NodeBufferReader.prototype = new Uint8ArrayReader();
|
|
|
|
/**
|
|
* @see DataReader.readData
|
|
*/
|
|
NodeBufferReader.prototype.readData = function(size) {
|
|
this.checkOffset(size);
|
|
var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
|
|
this.index += size;
|
|
return result;
|
|
};
|
|
module.exports = NodeBufferReader;
|