const onlyAllowFirstCall = function()

in src/CallbackContext.js [112:119]


  const onlyAllowFirstCall = function (toWrap) {
    return function () {
      if (!finished) {
        toWrap.apply(null, arguments);
        finished = true;
      }
    };
  };