sutoiku / formula.js

JavaScript implementation of most Microsoft Excel formula functions
Other
2.14k stars 293 forks source link

future value isn't optional in PV #8

Closed henri-tremblay closed 10 years ago

henri-tremblay commented 10 years ago

There should be a

future = (typeof future === 'undefined') ? 0 : future;

at the beginning of the function

Y-- commented 10 years ago

You're right, I've fixed it : https://github.com/sutoiku/formula.js/commit/7dd2419baf8f0356bc6d2b3254547cdb02223cba

Thanks :-)