Hacker News new | ask | show | jobs
by tentacleuno 969 days ago
That seems a lot more ergonomic.

I can already see someone copy-pasting `wrap(myFunction)(args)` everywhere :-)

1 comments

I think the most usual way in a project is to use this style. Wrap is a simple way to let you get Result type without refactoring your implementation.

https://musicq.gitbook.io/unwrapit/recipe/return-result-with...

Then I'm tightly coupling all my code to this library. I would prefer to write javascript like normal and not import a library anytime I author a function.