Code Typing

打完一段代码,测你的 WPM

WPM
--
ACC
--
ERRORS
0
TIME
60s
snippet.ts 1/10
function·debounce(fn,·delay)·{··let·timer··return·(...args)·=>·{····clearTimeout(timer)····timer·=·setTimeout(()·=>·fn(...args),·delay)··}}