lint: prettier

This commit is contained in:
kunkka 2020-10-25 14:03:08 +08:00
parent e7f8bf107f
commit 9f03beb1cd

View file

@ -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);