void5253

Results 1 issues of void5253

Original code: https://javascript.info/call-apply-decorators#throttle-decorator Here's a small code snippet to show where it doesn't work. ```js function f(a) { console.log(a) }; let g = throttle(f, 1000); for(let i = 0; i...