Vadzim

Results 3 comments of Vadzim

@malte-wessel is it possible to fix that? I have the same issue on linux in Chrome, but not in Firefox. The horizontal scroller appears always though it's not needed. In...

Hmmm.. may be the `for` keyword could be better for that: ```javascript a(let foo for 1) { // ... } // means a(1, (foo) => { ... }) a(let [foo,...

```ts declare var p: Promise; const p2 = p.catch(() => null); // ^? p2: Promise; ``` but this is not `Promise`, this is `Promise`...