Skip to content

avantstay/auto-format-number

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install it

yarn add https://github.com/avantstay/auto-format-number.git#v1.0.0

Use it

import { shortFormatNumber, shortFormatCurrency, shortFormatPercentage, Currency } from 'auto-format-number'

// Regular number
console.log(shortFormatNumber(23.124124))

// Currency
console.log(shortFormatCurrency(23.1241))
console.log(shortFormatCurrency(23.1241, Currency.USD))

// Percentage
console.log(shortFormatPercentage(23.1241))