From 1be47f9583e894e1421432308e5c1394babe3fc2 Mon Sep 17 00:00:00 2001 From: William Felker Date: Tue, 27 Oct 2020 10:17:37 +0800 Subject: [PATCH] changed function name --- common/window.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/window.js b/common/window.js index 8ddfece2..794e8fdf 100644 --- a/common/window.js +++ b/common/window.js @@ -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); };