Kyle Simpson
Kyle Simpson
[Editor: this question was moved here from [another thread](https://github.com/getify/moduloze/issues/8#issuecomment-682033863)] @MartinKolarik: I briefly checked how moduloze currently works with other formats and I noticed there's a required config option dep-map. I...
See: https://github.com/getify/moduloze/issues/4#issuecomment-662686779
* [ ] ESM: detect and combine multiple named imports (`import { x } from ..`) * [ ] ESM: detect and combine multiple named exports (`export { x }`)...
CSP channels
I would be very interested to see where CSP channels (ala go, clojure's core.async), which have been ported to JS (like [here](https://github.com/ubolonton/js-csp), [here](https://github.com/jlongster/js-csp), and even [here](https://github.com/getify/asynquence/blob/master/contrib/README.md#go-style-csp-api-emulation)), fit into this unified...
I have this expanded list of proposed FAQs. I'm not sure if it *replaces* or *augments* the existing FAQs on the site. Open for discussion here, or potentially reorganization, before...
Consider something like this: ```js let res = async do { fetch("https://some.url"); } ``` The return value (here assigned to `res`) from a `do async { .. }` block is...
Have you considered options like: ```js let res1 = do async { .. } // (edited mistake) let res2 = do.async { .. } let res3 = async.do { .....
**What is the code triggering the message?** ```js { x = 2; let x; } ``` **What went wrong in the code? What is the system trying to tell you?**...
Just making a suggestion here. Take it all with a grain of salt. I understand how this lib is useful when you're going to create several items all at once,...