Skip to content

gustavobonassa/js-abbreviation-number

 
 

Repository files navigation

js-abbreviation-number

Abbreviate numbers in javascript

CI/CD GitHub license PRs Welcome codecov CodeFactor NPM GitHub contributors


Installation

npm install js-abbreviation-number

Usage

import { abbreviateNumber } from "js-abbreviation-number";

const num = abbreviateNumber(1000, 1); // expected 1.0K

const num = abbreviateNumber(12, 0); // expected 12

const num = abbreviateNumber(1100, 2); // expected 1.10K

const num = abbreviateNumber(1100, 2, {padding: false}); // expected 1.1K

const num = abbreviateNumber(1234.56, 2); // expected 1.23K

const num = abbreviateNumber(1234, 1, {symbols: ['', 'kg']}); // expected 1.2kg

const num = abbreviateNumber(1234567, 1, {symbols: ['', 'kg']}); // expected 1234.5kg

abbreviateNumber(num: number, digit?: number, options?: {symbols?: string[]; padding: boolean}): string

digit is optional (unless you need to specify the options object). It defaults to 1.

The options object is optional too:

  • symbols can be an array of units, defaulting to ["", "K", "M", "G", "T", "P", "E"].
  • padding determines whether to keep the exact number of digits or to drop trailing zeroes.

Contributing

Thank you for your interest in contributing! Please feel free to put up a PR for any issue or feature request.

Give me a Star

If you think this project is helpful just give me a ⭐️ Star is enough because i don't drink coffee 😃

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Author

Made with ❤️ by Mohsen Madani.

About

🔢 Abbreviate numbers in javascript

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 89.0%
  • JavaScript 11.0%