Dmitry Iv.
Dmitry Iv.
List of compatible libs: * [x] [zen-observable](https://www.npmjs.com/package/zen-observable) * [x] [rxjs](https://www.npmjs.com/package/rxjs) * [ ] [most](https://www.npmjs.com/package/most) * [ ] [xstream](https://www.npmjs.com/package/xstream) * [ ] [bacon](https://www.npmjs.com/package/baconjs) * [ ] [kefir](https://www.npmjs.com/package/kefir) * [ ] [flyd](https://www.npmjs.com/package/flyd)...
Interesting how would that be possible with top-level await import() - via import maps?
After updating from 0.10 to 5.3.0 also started having this issue. It crashes when I have some rough syntax mistake in a file, like `window.;`
@hughsk ping
While here, I have a suggestion. It's a bit unclear from readme how to use the module or how to just parse an expression, I had to check the source....
> (arg1, arg2) => arg1 * Math.pow(10, arg2) That can be done simpler as ``` (a,b) => parseFloat(a+'e'+b) ```
Side note: it's possible to (partially) minify worker code with the [inline-worker](https://github.com/mohayonao/inline-worker) technique: ```js let worker = new Worker(URL.createObjectURL(new Blob([ (function(){ // ...worker code goes here }).toString().slice(11,-1) ], { type:...
https://component.jit.su/ is also down
queried is removed, remove emmy and mutype. Leave define-state as a heritage.
It is still a very requested feature in many respects. For example, there is a [polyify](https://github.com/solomonhawk/polyify) transform, which can solve the issue of automatic polyfillying of any browserify bundles. That...