diff --git a/src/utils/common.js b/src/utils/common.js index cf693f0..3ce005b 100644 --- a/src/utils/common.js +++ b/src/utils/common.js @@ -63,7 +63,7 @@ export function shuffleAList(list) { export function throttle(fn, time) { let isRun = false; - return function() { + return function () { if (isRun) return; isRun = true; fn.apply(this, arguments);