d3-queue
d3-queue copied to clipboard
Evaluate asynchronous tasks with configurable concurrency.
I realized today that some utility scripts I wrote are no longer working since the current version explicitly checks for and throws on `defer after await`. Reviewing when/why this might...
add deprecation notice link to d3@4 which is the last version including d3-queue the byte size of d3-queue@2 is not relevant anymore
Is it possible to pass a variable to .await()? It doesn't look like .await() supports .bind(). Forgive my ignorance, I'm new to both d3 and asynchronous programming. Here's my code...
V8 will deoptimize functions that pass `arguments` outside of a function, which happen in `defer`. Some discussion about it: https://github.com/GoogleChrome/devtools-docs/issues/53#issuecomment-51941358 http://stackoverflow.com/a/29200041/87798 While this has not been a critical performance issue...