Linus Unnebäck

Results 747 comments of Linus Unnebäck

I would absolutely love to see this as the default as well!

@ziogibom how is Multer vulnerable? would love to get a fix out 👍

Ref values shouldn't be used as dependencies to `useState` as changing the `useRef` current value won't trigger an update. We are using this workaround currently: ```typescript const lottieRef = useCallback((node:...

Hmm, interesting. If I create a completely new Expo app the `autoPlay` work as intended 🤔 1. `npx expo-cli@latest init .` 2. `npx expo-cli@latest add lottie-react-native` 3. Add a Lottie...

For `wasm32-wasi` I think that most things should be provided out-of-the-box, raw mode is probably blocked on https://github.com/WebAssembly/WASI/issues/161 though... Some imports needs to come from `std::os::wasi` instead of `std::os::unix`, e.g....

> Today I wanted to use a project that is built only as a Swift Package, and has no Xcode project. A bit off topic, but if you are using...

@ash0080 if you do not return an array of the same length, how will Dataloader know which input corresponds with which output? e.g. if Dataloader gives you the array `['alice',...

For anyone wanting to work around this for now, something like this should help: ```typescript import Redis from 'ioredis' function createRedisClient (uri: string, options?: Redis.RedisOptions): Redis.Redis { const parsed =...

The latest version, 1.3.3, does no longer produce the warning for me 🎉