This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

ember-currencies-and-format-money

4.1.1 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i ember-currencies-and-format-money

Weekly Downloads

102

Version

4.1.1

License

MIT

Unpacked Size

19 kB

Total Files

17

Last publish

Collaborators

  • ahmetemrekilinc
  • esrgrlk
  • eztaskomaz