All Versions
3
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v1.0.3 Changes

    • ๐ŸŽ Performance improvements. Notably the Queue class will now avoid calling the delay() function and will immediately trigger any pending task as soon as a task is finished. This change indirectly impacts most functions in this library as they internally use Queue. This change can produce minor behavior changes but is not considered a breaking change.
    • ๐Ÿ‘Œ Improved tests.
  • v1.0.2 Changes

    • ๐Ÿš€ Altered UMD deployment to only support browsers that support async/await language feature. The reason is that bundling both regenerator-runtime and all the necessary shims is too complex. For older browsers it is easier to just process the lib with Babel then add regenerator-runtime and core-js.
  • v1.0.1 Changes

    • ๐Ÿ›  Fixed map, filter and forEach behavior in case of exception. Pending tasks were not cancelled in case of exception and the behavior in that case was not documented as opposed to other functions.