
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
js-abbreviation-number
Advanced tools
npm install js-abbreviation-number
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.import { unabbreviateNumber } from "js-abbreviation-number";
const num = unabbreviateNumber("-25"); // expected -25
const num = unabbreviateNumber("-1.3k"); // expected -1300
const num = unabbreviateNumber("1.123456k"); // expected 1123.456
const num = unabbreviateNumber("666kilo", ["", "kilo", "Mega"]); // expected 666000
unabbreviateNumber(num: string, symbols?: string[]): number
symbols is optional that can be an array of units, defaulting to ["", "k", "M", "G", "T", "P", "E"].
Thank you for your interest in contributing! Please feel free to put up a PR for any issue or feature request.
If you think this project is helpful just give me a ⭐️ Star is enough because i don't drink coffee 😃
This project is licensed under the MIT License - see the LICENSE.md file for details
Made with ❤️ by Mohsen Madani.
FAQs
Abbreviate numbers in javascript
We found that js-abbreviation-number demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.