changed function name

This commit is contained in:
William Felker 2020-10-27 10:17:37 +08:00
parent a786df1f8b
commit 1be47f9583

View File

@ -101,7 +101,7 @@ export const isMobileBrowser = (userAgent) => {
export const _checkDebounce = (func, wait) => {
let timeout;
return function executedFunction(...args) {
return function passedInFunction(...args) {
const later = () => {
func(...args);
};