文件名称:taxcalc:计算税收的节点模块
文件大小:8KB
文件格式:ZIP
更新时间:2024-07-14 10:44:36
JavaScript
税收计算 一个简单的行项目税计算器。 npm install taxcalc 用法 var calc = require ( 'taxcalc' ) ; var taxConfigs = [ { id : 'tax1' , rate : 0.05 , isComposed : false } , { id : 'tax2' , rate : 0.09975 , isComposed : false } ] ; var items = [ { unit : 100 , qty : 1 , isTaxable : { tax1 : true , tax2 : true } } , { unit : 100 , qty : 1 , isTaxable : { tax1 : true , tax2 : true } } ] ; calc ( items , taxConfig
【文件预览】:
taxcalc-master
----package.json(509B)
----LICENSE(1KB)
----src()
--------main()
--------spec()
----spec()
--------support()
--------.gitignore(10B)
----.gitignore(13B)
----lib()
--------index.js(4KB)
--------money.js(2KB)
----Makefile(359B)
----README.md(1KB)