├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── finance.js ├── package.json ├── spec ├── GenAmortizationSchedule.spec.js ├── PV.spec.js ├── PVofLumpSum.spec.js ├── PVofPerpetuity.spec.js ├── firstPaymentDate.spec.js ├── isFunction.spec.js ├── isPositiveInteger.spec.js └── isPositiveNumber.spec.js ├── temp.js ├── temp └── CUMIPMT.js ├── temp1.js ├── temp2.js └── template.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/README.md -------------------------------------------------------------------------------- /finance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/finance.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/package.json -------------------------------------------------------------------------------- /spec/GenAmortizationSchedule.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/GenAmortizationSchedule.spec.js -------------------------------------------------------------------------------- /spec/PV.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/PV.spec.js -------------------------------------------------------------------------------- /spec/PVofLumpSum.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/PVofLumpSum.spec.js -------------------------------------------------------------------------------- /spec/PVofPerpetuity.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/PVofPerpetuity.spec.js -------------------------------------------------------------------------------- /spec/firstPaymentDate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/firstPaymentDate.spec.js -------------------------------------------------------------------------------- /spec/isFunction.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/isFunction.spec.js -------------------------------------------------------------------------------- /spec/isPositiveInteger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/isPositiveInteger.spec.js -------------------------------------------------------------------------------- /spec/isPositiveNumber.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/spec/isPositiveNumber.spec.js -------------------------------------------------------------------------------- /temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/temp.js -------------------------------------------------------------------------------- /temp/CUMIPMT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/temp/CUMIPMT.js -------------------------------------------------------------------------------- /temp1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/temp1.js -------------------------------------------------------------------------------- /temp2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/temp2.js -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhicks/finance-js/HEAD/template.js --------------------------------------------------------------------------------