UNPKG

solid-credit

Version:

Solid Credit is an advanced tool designed for the precise generation of loan amortization tables. This library encompasses a variety of loan structures, including the French, German, and American systems, in addition to offering options for grace periods.

10 lines (9 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertToDecimal = void 0; class convertToDecimal { getdecimalize(num) { return Number((num / Math.pow(10, 2)).toFixed(2)); } } exports.convertToDecimal = convertToDecimal;