Browse Source

test:提交测试

master
秋田弘 8 months ago
parent
commit
22dc20e9e5
  1. 2
      frontend/src/util/common.ts

2
frontend/src/util/common.ts

@ -7,7 +7,7 @@ export const debounce = (func: Function, wait: number): Function => {
timeout = setTimeout(() => func.apply(this, args), wait);
};
};
// Throttle
export const throttle = (func: Function, wait: number): Function => {
let timeout: any;

Loading…
Cancel
Save