Hacker News new | ask | show | jobs
by KeithMajhor 4929 days ago
This was a great post. Just a little nitpick. I think this line near the bottom:

var something = maybe(doesntCheckForSomething(value));

Should actually be:

var something = maybe(doesntCheckForSomething)(value);

If I'm wrong then I likely missed something so please let me know. Thanks.

1 comments

I think you're right, thanks!!!