Alexander Scholz

Results 12 comments of Alexander Scholz

I created a example showing the problem: https://github.com/LucidityDesign/iOS-Slide-Menu/commit/5df587ab2d4ea9c17ea0d8f6bb1b51270134bb57

So I tried to debug this phenomenon: After axios is [transforming the response](https://github.com/axios/axios/blob/d660e29c1a0f4af84e2050f1fcfa52eb9715b363/lib/defaults.js#L81) `response.data.constructor === Object` is `true`. Due to the resolving of promises I lose track of the variable,...

Any updates? I'm still having this problem with: ``` "@babel/polyfill": "^7.10.4", "core-js": "^3.6.5", "next": "^9.3.0", ``` and ``` "useBuiltIns": "usage", ```

I think the problem was that I initialized a new instance instead of re-using the old one. But I'm not sure anymore.

Just use the old instance :)

I came up with the following, but it's pretty expensive. Maybe you guys find a way to cache the closest element: ``` javascript child.on('mousewheel', function(event) { event.preventDefault(); // TODO find...

At first I thought: `MMM` outputs a capitalized string (`Nov`) so it expects the same input. However these tests show, that the output is not very predictable and adding `customParseFormat`...

Does this work for you? ``` // @ts-expect-error import BarcodeReader from 'react-barcode-reader/lib/index' ```

I'm sorry but I wrote a custom Storage for multer which resizes the images. I love the flexibility of graphicsmagick-streams but as long as it is not compiling on mac...