Skip to content

list of currencies and format given money amount according to the currency

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

ahmetemrekilinc/ember-currencies

Repository files navigation

ember-currencies-and-format-money

npm version downloads Build Status Ember Observer Score Dependency Status devDependency Status Code Climate

ember-currencies-and-format-money is an addon that enables you format money amounts in your Ember.js application.

Installation

cd your-project-directory
ember install ember-currencies-and-format-money

Usage

You can use format-money helper in your hbs files by passing a parameter money object with attributes amount and currency. If currency is not set, then TRY is default currency.

{{format-money (hash amount=1000 currency='USD') }}

By default currency is visible. If you want to hide currency, you can set currencyHidden=true parameter.

{{format-money (hash amount=1000 currency='USD') currencyHidden=true }}

You can import formatMoneyAmountByCurrency function and use it by passing amount, currencyValue and currencyHidden parameters.

import { formatMoneyAmountByCurrency } from 'ember-currencies-and-format-money/format-amount';

let amount = 1550;
let currencyValue = 'USD';
let currencyHidden = false;
let result = formatMoneyAmountByCurrency(amount, currencyValue, currencyHidden);
console.log(result); // $15.50

Checkout live examples at ember-currencies-and-format-money demo page

License

This project is licensed under the MIT License.

About

list of currencies and format given money amount according to the currency

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •