installment-calculations
Version:
Calculate payment installments (and other useful details) based on start/end dates, interval and target amount
26 lines (16 loc) • 399 B
Markdown
## Installment Calculations
Calculate payment installments (and other useful details) based on **start/end dates**, **interval** and **target amount**.
### Installation
```shell
npm install installment-calculations
```
### Usage
```javascript
var IC = require('installment-calculations');
IC.getNumberOfInstallments(startDate, endDate, interval);
// ...
```
### Tests
```shell
npm test
```