收集好用的代码段
class Polling { // 开启轮询 startPolling = (time, func) => { func(); this.timer = setInterval( () => func(), time ); } // 结束轮询 clearPolling = () => { clearInterval(this.timer); } }
← Regex Skill