SirJayEarn

Results 5 comments of SirJayEarn

This is the solution I came up with so far: https://codesandbox.io/s/new-shape-tofno?file=/src/App.tsx using a combination of StateMemo and React.memo. I tried to avoid as much boilerplate as possible and therefore tried...

Sorry for the long delay! In the meantime a bunch of these functions from my initial comment are no longer required I think, because with the latest typescript releases this...

Fiddling around with haskell a little lately, what I used pretty often was: `words`, `unwords`, `reverse`, `show`, `read`, `zip` and `unzip`. These might also be helpful - what do you...

`show` basically just converts to string. So it could be implemented as ```const show = (arg: any) => `${arg}`;```. Or we could think about doing JSON.stringify for objects, but idk....

> Could add something like this to mapping.md for one-liners? > > ```gfm > ### Helpful one-liners > > Some lodash and ramda functions don't have a Rameda equivalent, but...