Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 248 Bytes

File metadata and controls

14 lines (12 loc) · 248 Bytes

Example usage:

// All settings are optional
let format = require('num-format-currency')({
  suffix: ' USD',
  prefix: '$',
  decimalSeparator: '.',
  decimals: 2,
  groupSeparator: ','
});

format(123456.78910) // => $123,456.78 USD