currencyfy

convert numbers to displayable currency


Keywords
currency, number, convert
License
MIT
Install
npm install currencyfy@0.2.0

Documentation

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 currencyfy

Or manually download it.

Usage

  1. 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">
  1. 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 ,