powerbilayeredmap

Results 2 issues of powerbilayeredmap

Is this still an active project? If i'm looking to run R code (and possibly some ggplot2 outputs) directly in the web browser, is this tool a possibility?

``` var queue = new SequentialTaskQueue(); queue.push(() => { console.log("first task"); }); setTimeout(()=>{ queue.push(() => { console.log("second task"); }); } ,500); ``` will task 1 always complete before task 2?

question