Skip to content
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.

leifarriens/currencyfy

Repository files navigation

currencyfy

⚠️ Recommended and standardized way of formatting currency: Intl.NumberFormat

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');

2. 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 ,