I am adapting an old version D3 map visualization to modern D3v5: first step, to D3v4, is running with this source, but to the final step I need to convert Promises, from old queue,
d3.queue().defer(d3.json,"file.json").(ready);
to the modern v5 style... How to express in v5 style?
Seems that is something as
var brMap = d3.json("file.json");
Promise.all([brMap]).then(ready)
but is not working.
PS: where the v5 simple examples?