@forcecalendar/interface 1.0.53 → 1.0.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -734,10 +734,7 @@ class k {
734
734
  static debounce(t, e = 250) {
735
735
  let r;
736
736
  return function(...s) {
737
- const n = () => {
738
- clearTimeout(r), t(...s);
739
- };
740
- clearTimeout(r), r = setTimeout(n, e);
737
+ clearTimeout(r), r = setTimeout(() => t.apply(this, s), e);
741
738
  };
742
739
  }
743
740
  /**