From 9f03beb1cdae458c175cbd6386c6b96ceeb683bc Mon Sep 17 00:00:00 2001 From: kunkka Date: Sun, 25 Oct 2020 14:03:08 +0800 Subject: [PATCH] lint: prettier --- src/utils/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);