Package Exports
- @depay/local-currency
- @depay/local-currency/dist/esm/index.js
- @depay/local-currency/dist/umd/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@depay/local-currency) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Quickstart
yarn add @depay/local-currencyor
npm install --save @depay/local-currencyimport { Currency } from '@depay/local-currency'
let currency = new Currency({ amount: 20 })
currency.toString()
// €22.32Functionalities
new Currency
Creates an instance of Currency
let currency = new Currency({ amount: 20 })amount sets the amount you want to convert into a currency string.
timeZone will be automatically detected by the client, but can be provided to:
let currency = new Currency({ amount: 20, timeZone: 'Europe/Berlin' })toString
Converts a currency string into a formatted string:
let currency = new Currency({ amount: 20 })
currency.toString()
// €22.32fromUSD
Converts USD into local currency:
let currency = await Currency.fromUSD({ amount: 20 })
currency.toString()
// €16.88getCode
Gives you the local currency code:
Currency.getCode()
// EURDevelopment
Get started
yarn install
yarn devRelease
npm publish