constructor()

in lib/index.js [27:33]


  constructor({ defaultFrequency = 0, maxVal } = {}) {
    this._defaultFrequency = defaultFrequency;
    this._maxVal = maxVal;
    this._tree = { 0: 0 };
    this._msb = mostSignificantBit(maxVal);
    this._countNeg = defaultFrequency < 0 ? maxVal : 0;
  }