Skip to content

2.9.0

Compare
Choose a tag to compare
@2A5F 2A5F released this 09 Oct 16:30
· 33 commits to master since this release
  • Add
    • AsyncPool

      Asynchronous pool
      Used to ensure that the number of asynchronous executions at the same time does not exceed the limit

      Example

      const pool = new AsyncPool(1000)
      pool.run(() => fetch('foo/bar'))