read()

in lib/index.js [181:186]


  read(count) {
    if (!isInteger(count)) {
      throw new Error('Invalid count');
    }
    return this._read(Math.max(Math.min(count, this._maxVal), 0));
  }