Hacker News new | ask | show | jobs
by filearts 4349 days ago
Thanks for sharing, but in my app I really need five to be six. If you could address this one small issue I'm sure your lib would see much more use.
2 comments

You can get 6 with `(five() + (five()/five()))`
var six = five() + five() / five();
var six = function() { return five() + five() / five(); }

Some people may rely on that functionality.