3 ms·
This was a great post. Just a little nitpick. I think this line near the bottom: var something = maybe(doesntCheckForSomething(value)); Should actually be: v
by KeithMajhor 14y 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.
- raganwald 14y agoI think you're right, thanks!!!