Socket
Socket
Sign inDemoInstall

ember-currencies-and-format-money

Package Overview
Dependencies
275
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ember-currencies-and-format-money

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


Version published
Maintainers
3
Install size
20.2 MB
Created

Readme

Source

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.

Keywords

FAQs

Last updated on 08 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc