currencyfy
convert numbers to displayable currency
currencyfy will convert your numbers to currency
Installation
This is a Node.js module available through the npm registry. Installation is done using the npm install command:
$ npm install currencyfyOr manually download it.
Usage
- Include
currencyfy
Import
import currencyfy from 'currencyfy';Require
const currencyfy = require('currencyfy');Or link currencyfy.min.js in your HTML:
<script src="currencyfy.min.js">- Currencyfy your number
currencyfy(19.9, '€');converts to
19,90 €Custom settings
currencyfy(23, '€', {
before: true,
});converts to
€ 23,-| parameter | value | default |
|---|---|---|
before |
boolean |
false |
gap |
boolean |
true |
showzero |
boolean |
false |
spacer |
string |
, |