plutda
Results
1
comments of
plutda
``` function once(func) { let revoke = false let ret = null return function() { if (!revoke) { ret = func.apply(this, arguments) revoke = true } return ret } }...