acdr-ui/dist/build/mp-weixin/sheep/helper/throttle.js

2 lines
189 B
JavaScript
Raw Normal View History

2024-09-19 07:20:14 +08:00
"use strict";let t;exports.throttle=function(e,o=500,i=!0){i?t||(t=!0,"function"==typeof e&&e(),setTimeout((()=>{t=!1}),o)):t||(t=!0,setTimeout((()=>{t=!1,"function"==typeof e&&e()}),o))};