monssef

Results 5 comments of monssef

have you tried cleaning the build ? sometimes `cd android && ./gradlew clean && cd ../ && react-native run-android` is the answer.

@hwillson @JoviDeCroock test added

Under the hood formatDuration calls formatDistance with `onlyNumeric: false`, i patched the formatDistance within `sv` locale to update the `onlyNumeric` when needed. ```ts const formatDuration = ( duration: Parameters[0], options:...

```typescript type Primary = string | number | boolean | Function; type DeepReadonly = { readonly [key in keyof T]: T[key] extends Primary ? T[key] : DeepReadonly } ```` @ElPerenza...

@feng0100 if `T` is an object `keyof T` will return the keys, if its not an object (keyof T = never)