UNPKG

vaccine-stats-plugin

Version:

A Module to Get Various Vaccine Statistics Related to India from Various Sources and Additionally Can tweet with the Given Configuration

15 lines (12 loc) 291 B
const humanFormat = require('human-format'); const numberScale = new humanFormat.Scale({ K: 1000, Lacs: 100000, Crs: 10000000, }); module.exports = (number) => { const formattedNumber = humanFormat(number, { scale: numberScale, }); return formattedNumber; };