All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cjs.after.js Maven / Gradle / Ivy

The newest version!
// Returns a function that will only be executed on and after the Nth call.
function after(times, func) {
  return function() {
    if (--times < 1) {
      return func.apply(this, arguments);
    }
  };
}

module.exports = after;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy