mirror of
https://github.com/discourse/discourse.git
synced 2025-03-02 14:08:55 +08:00
19 lines
629 B
JavaScript
19 lines
629 B
JavaScript
import { debounce, next } from "@ember/runloop";
|
|
import { isTesting } from "discourse-common/config/environment";
|
|
|
|
/**
|
|
Debounce a Javascript function. This means if it's called many times in a time limit it
|
|
should only be executed once (at the end of the limit counted from the last call made).
|
|
Original function will be called with the context and arguments from the last call made.
|
|
**/
|
|
|
|
export default function () {
|
|
if (isTesting()) {
|
|
// Don't include the time argument (in ms)
|
|
let args = [].slice.call(arguments, 0, -1);
|
|
return next.apply(void 0, args);
|
|
} else {
|
|
return debounce(...arguments);
|
|
}
|
|
}
|