Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

money-formatter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

money-formatter

Simple Javascript library for currency formatting

  • 0.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
183
decreased by-68.72%
Maintainers
1
Weekly downloads
 
Created
Source

money-formatter

Simple Javascript library for currency formatting.

It allows you to format currencies without specifying any formatting arguments besides the currency code and number value itself, thanks to rules from the currency-format package.

Travis build status npm version Bower version Dependency Status devDependency Status

Installation

Install from npm or bower

npm install money-formatter
# or bower install money-formatter

Usage

For Node.js, Browserify and Webpack

You can import whole module

var moneyFormatter = require('money-formatter');
// Or in ES6
// import moneyFormatter from 'money-formatter';
moneyFormatter.format('USD', 10); // => '$10.00'

Or use separate functions

import { format } from 'money-formatter';
format('EUR', 123); // => '€123.00'

Other

You can add UMD distribution (from dist/money-formatter.js) directly to HTML and use it with AMD loader or from the global object

<script src="path/to/dist/money-formatter.js"></script>
<script>
    var moneyFormatter = require('money-formatter');
    // Or use window.moneyFormatter if you are not using requirejs;
</script>

API

format(currencyCode, amount, [fractionSize=2, useAlphaCode=false]) => string

Formats number based on the specified currency params.

If fractionSize is not provided, the currency's fraction size from ISO 4217 will be used. It fallbacks to default value 2 if currency have no fraction size. useAlphaCode is a flag to use alphabetic code (e.g. 'USD') instead of commonly used symbol (e.g. '$') and apply basic formatting from formatSimple. You may want to use it in ASCII-only environments or if you want to align output layout.

moneyFormatter.format('USD', 1234567.89); // => '$1,234,567.89'
moneyFormatter.format('RUR', 10, 0); // => '10 ₽'
moneyFormatter.format('USD', 10, 0, true); // => '10 USD'
formatSimple(currencyName, amount, [fractionSize=2]) => string
moneyFormatter.formatSimple('$$$', 123, 0); // => '123 $$$'
formatToHTML(currencyCode, amount, [fractionSize=2, useAlphaCode=false]) => string

Same as format but outputs string with HTML element for proper bidirectional output in browsers.

moneyFormatter.formatToHTML('SAR', -10); // => '<span dir="rtl">-10.00 ﷼</span>'

It will look like -10.00 ﷼

Development

  1. Clone this repository
  2. Run npm install inside cloned repository directory to install dependencies
  3. To test the code during development run npm test to run tests once or use npm run watch to watch for changes and autorun tests
  4. Execute npm run build to build distributable files to the dist/ dir

License

The MIT License.

See LICENSE

Keywords

FAQs

Package last updated on 28 Dec 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc