This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Array.each_asynchronously | |
Description: | |
Works just like Array.each except runs each iteration on a specified delay. | |
This means that script execution will continue in between each iteration, | |
rather than halting until the full array has been processed. | |
Arguments: | |
- fn: (function) The function to execute on each item in the array. It is |