arrayWrapper.push = function()

in src/global_append_only_array.js [63:74]


  arrayWrapper.push = function (newValue) {
    if (receivedAllValues.signal.pinLastValue()) {
      receivedAllValues.set(false)
      localArray.push(newValue)
      arrayWrapper.updateState({newValues: [newValue]})
      Time.setTimeout(() => {
        receivedAllValues.set(true)
      }, 50)
    } else {
      localChangesQueue.push(newValue)
    }
  }