Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
org.webjars.npm:angular-currency-format
Advanced tools
This project is module for AngularJS. It provides:
This library is available with the bower package manager, you can either:
Execute the following command: bower install angular-currency-format
Add 'currencyFormat'
to your angular.module dependency, usually in app.js
angular.module('myApp', ['currencyFormat']);
https://livedemo.xsolla.com/angular-currency-format/
In the factory there are two methods that return information about the currencies.
// Declare the factory as dependency
angular.module('myApp')
.controller('MyCtrl', function (currencyFormatService) {
// Get the information about the currencies
console.log(currencyFormatService.getCurrencies());
// outputs:
// {
// 'AMD': {
// 'name': 'Armenian Dram',
// 'fractionSize': 2,
// 'symbol': {
// 'grapheme': 'դր.',
// 'template': '1 $',
// 'rtl': false
// },
// 'uniqSymbol': {
// 'grapheme': 'դր.',
// 'template': '1 $',
// 'rtl': false
// }
// },
// ...
// }
// Get the information about currency by ISO 4217 currency code
console.log(currencyFormatService.getByCode('EUR'));
// outputs:
// {
// 'name': 'Euro',
// 'fractionSize': 2,
// 'symbol': {
// 'grapheme': '€',
// 'template': '$1',
// 'rtl': false
// },
// 'uniqSymbol': {
// 'grapheme': '€',
// 'template': '$1',
// 'rtl': false
// }
// }
// Get the information about the delimiters
console.log(currencyFormatService.getLanguages());
// outputs:
// {
// 'ar_AE': {
// 'decimal': '.',
// 'thousands': ','
// },
// ...
// }
// Get the information about the delimiters by locale ID
console.log(currencyFormatService.getLanguageByCode('en_US'));
// outputs:
// {
// {
// 'en_US': {
// 'decimal': '.',
// 'thousands': ','
// }
// }
});
Information about currencies is an object which has the structure:
{
'AMD': { // ISO 4217 currency code.
'name': 'Armenian Dram', // Currency name.
'fractionSize': 2, // Fraction size, a number of decimal places.
'symbol': { // Currency symbol information.
'grapheme': 'դր.', // Currency symbol.
'template': '1 $', // Template showing where the currency symbol should be located
// (before or after amount).
'rtl': false // Writing direction.
},
'uniqSymbol': { // Alternative currency symbol information. We recommend to use it
// when you want to exclude a repetition of symbols in different
// currencies.
'grapheme': 'դր.', // Alternative currency symbol.
'template': '1 $', // Template showing where the alternative currency symbol should be
// located (before or after amount).
'rtl': false // Writing direction.
}
},
...
}
Symbol/uniqSymbol field is null
, when the currency has no symbol/alternative symbol.
Information about languages is an object which has the structure:
{
"en_US": { // Locale ID
"decimal": ".", // Decimal delimiter
"thousands": "," // Thousands delimiter
},
...
}
Instead of directly using the currency symbol, you only need the 3 char long currency code (e.g. USD or JPY). It will take the right symbol, format and fraction size. The fraction can be set up by providing a number of decimal places after the currency field:
// in controller
$scope.amount = -1234.56;
$scope.isoCode = 'USD';
$rootScope.currencyLanguage = 'en_US'; // Can be set through the parameter of the filter. Default 'en_US'.
// in template
{{ amount | currencyFormat:isoCode }} // -$1,234.56
{{ amount | currencyFormat:isoCode:0 }} // -$1,235
{{ amount | currencyFormat:'RUR':null:true:'ru_RU' }} // -1 234,56 ₽
If there is no currency symbol, then the filter will return the value in the following format: formated amount + ISO code. For example -1,234.56 USD
.
The component uses the JSON with currencies and languages information from https://github.com/xsolla/currency-format.
The list of currency codes was taken from https://en.wikipedia.org/wiki/ISO_4217.
The MIT License.
See LICENSE
FAQs
WebJar for angular-currency-format
We found that org.webjars.npm:angular-currency-format demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.