calc-gst-plus-sc
v1.0.0
Published
Calculate GST plus Service Charge
Readme
Calculate GST and Service Charge
Usage
npm install calc-gst-plus-scconst getTotalPrice = require('calc-gst-plus-sc');
const price = 100;
const totalPrice = getTotalPrice(price);
// Total price with Service Charge and GST
console.log(totalPrice);