Non-blocking version of Array.prototype.map, it will pause the map loop every pauseEvery. Keep in mind that
depending on your code workload the pause interval and duration may be exact or longer than specified. It's the same
single thread JavaScript nature setTimeout have to follow.
Non-blocking version of
Array.prototype.map
, it will pause the map loop everypauseEvery
. Keep in mind that depending on your code workload the pause interval and duration may be exact or longer than specified. It's the same single thread JavaScript nature setTimeout have to follow.