UNPKG

mout

Version:

Modular Utilities

11 lines (9 loc) 189 B
/** * Calls closure only after callback is called x times */ function after(closure, times) { return function() { if (--times <= 0) closure(); }; } export default after;