-
Notifications
You must be signed in to change notification settings - Fork 9
Usage
Daniel Leite de Oliveira edited this page Feb 18, 2017
·
2 revisions
import Wallet, { Money } from 'walletjs'
const money = Money.init(100)
const wallet = Wallet.init(money)
console.log(wallet.getAmount(money.currency))
const money2 = Money.init(100)
const newWallet = wallet.add(money2)
console.log(newWallet.getAmount(money2.currency))