Y
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
joezo
4349 days ago
You can get 6 with `(five() + (five()/five()))`
link
morley
4349 days ago
var six = five() + five() / five();
link
Evgeniuz
4349 days ago
var six = function() { return five() + five() / five(); }
Some people may rely on that functionality.
link