Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 271 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 271 Bytes

Calculate GST and Service Charge

Usage

npm install calc-gst-plus-sc
const getTotalPrice = require('calc-gst-plus-sc');
const price = 100;
const totalPrice = getTotalPrice(price);

// Total price with Service Charge and GST
console.log(totalPrice);