credit card payment calculator 源码
信用卡付款计算器 创建信用卡还款时间表和汇总明细,例如总还款额,要支付的总利息等。 受启发,此模块基于以下内容创建信用卡付款时间表 平衡 利率 最低本金百分比 小额余额的最低付款额 安装 npm i credit-card-payment-calculator 用法示例 const { createPaymentSchedule } = require ( 'credit-card-payment-calculator' ) ; const schedule = createPaymentSchedule ( { balance : 10_000 , interestRate : .219 , minPaymentForLowBalance : 25 , minPaymentPercentOfBalance : .01 , } ) ; console .
用户评论