function microtaskDebounce()

in static/assets/js/bootstrap.bundle.js [1533:1545]


  function microtaskDebounce(fn) {
    var called = false;
    return function () {
      if (called) {
        return;
      }
      called = true;
      window.Promise.resolve().then(function () {
        called = false;
        fn();
      });
    };
  }