UNPKG

money-lib

Version:

TypeScript library to work with money

11 lines (9 loc) 205 B
import { money } from "../dist"; money("100 eur") .add("€57.95") .sub(7.99) .add("4 cents") .debug() // money: { cents: 15000, currency: 'EUR' } .mul(5.56399) .div(1) .fmt(); // €834,60