Kuba Juszczyk
Kuba Juszczyk
@CrossEye I don't understand. R.slice is basically the same as Array.slice... ``` var slice = _curry3(_checkForMethod('slice', function slice(fromIndex, toIndex, list) { return Array.prototype.slice.call(list, fromIndex, toIndex); })); ``` So in this...
It all goes the wrong way. Adding `nth` support to `prop`/`path` causes unnecessary complexity. And it's very inefficient...
@CrossEye Yes of course. I added a suggestion here: https://github.com/ramda/ramda/issues/2974#issuecomment-602273378 That suggestion will simplify this code. In short: remove `nth` from `prop` and `path`. But this is a hard decision,...
What was the point of supporting negative values at all? Any specific use case? Because it's a bit funny... Probably almost nobody uses it. And all in all I know...
hey @CrossEye how with this research? Shall we remove negative int handling from prop/path? I can take care of it
Currently, Ramda has documentation (JSDoc). Adding additional documentation (TS) creates a double source of truth. If there will be differences between the two documentations, should I trust JSDoc or TS?...
@fpapado Is There Anybody Out There?
Hello @fpapado Sorry for the late reply. Now I was on vacation;) The team I work with, creates a clothes shop. We display infinity card list. Items are added to...
> But the issue now is, that the mask is not applied during navigation back to previous screen 🤔 @friedolinfoerder are you using react-native-screens? Probably this project needs same fix...
Reanimated has bug. Change order of transformations: ``` const transform = { transform: IS_IOS ? [{ scale }, { translateX }, { perspective }, { rotateY }] : [{ perspective...