Kivach
Cascading donations
Add repoPopularDonorsF.A.Q.
My repos

Footer

Subscribe to our newsletter

The latest news, articles, and resources, sent to your inbox.

DiscordTelegramTwitterMediumFacebookYouTubeGitHub

All information about repositories belongs to their owners.

More information about Kivach in the introductory article.

Built on Obyte

Total donated
Undistributed
Share with your subscribers:

Recipients

How the donated funds are distributed

Support the dependencies

Support the repos that depend on this repository

Top contributors

Recent events

Kivach works on the Obyte network, and therefore you can track all donations.

No events yet
ndhoule

ndhoule/after

Wrap a function in a function that will invoke the original function when invoked n or more times.

JavaScript
0
1
MIT License
ndhoule's profile
ndhoule
1 contributions

Support the dependencies of ndhoule/after

Account's avatar
ndhoule/arity
Wrap a function in a function that expects a given number of arguments.
Account's avatar
chaijs/deep-eql
Improved deep equality testing for Node.js and the browser.
Account's avatar
millermedeiros/esformatter-quotes
esformatter plugin: enforces coding style that string literals are delimited with single or double quotes.
Account's avatar
bulyshko/esformatter-semicolons
esformatter plugin for adding missing and removing unnecessary semicolons
Account's avatar
rdio/jsfmt
gofmt for javascript
Account's avatar
mochajs/mocha
simple, flexible, fun test framework
Account's avatar
sinonjs/sinon
JavaScript test spies, stubs and mocks.
Account's avatar
defunctzombie/zuul
simple browser testing

The **after** package provides a tiny utility that takes a function `fn` and a count `n`, returning a new wrapper that will only call `fn` after it has been invoked at least `n` times (subsequent calls invoke `fn` immediately). It’s useful for JavaScript developers who need to defer execution until a certain number of events or callbacks have occurred, such as aggregating asynchronous results before proceeding.