simple-currency-formatting 

Preview of the simple-currency-formatting project

  Library

Library to help formatting currency values.

Live link here!

Tech stack

JavaScript

NPM

Example

const { formatCurrency } = require("simple-currency-formatter");

let string = formatCurrency(1004.3, 2, ".", ",", "$", "USD");
// output: $1,004.30 USD