Ayan Yenbekbay

Results 4 issues of Ayan Yenbekbay

Note: these typings will only work with TS 2.8+, as they make use of [Conditional types](https://blogs.msdn.microsoft.com/typescript/2018/03/27/announcing-typescript-2-8/#conditional-types) to infer the return types of async functions. ![kapture 2018-03-28 at 3 10 31](https://user-images.githubusercontent.com/10968765/38002975-a1422db6-3235-11e8-94b1-0e7ca3f651b8.gif)

enhancement

[HappyPack](https://github.com/amireh/happypack) significantly reduces webpack build times by using parallel execution. I was able to make it work with babel-loader by adding the following to my `backpack.config.js`: ```js const HappyPack =...

Before: ```js const foo = (a && b) || c || d; ``` After: ```js const foo = a && b || c || d; ``` The same goes for...

status:needs discussion
area:binary expressions