
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@reverse/compact
Advanced tools
Functions for compacting numbers.
npm install @reverse/compact
This package uses the following letters for compacting numbers:
let compactNumberMap = {
4: 'K', // 1,000 -> 1K (only in compactMini)
7: 'M', // 1,000,000 -> 1M
10: 'B', // 1,000,000,000 -> 1B
13: 'T', // 1,000,000,000,000 -> 1T
16: 'Q', // 1,000,000,000,000,000 -> 1Q
19: 'q', // 1,000,000,000,000,000,000 -> 1q
22: 'S', // 1,000,000,000,000,000,000,000 -> 1S
25: 's', // 1,000,000,000,000,000,000,000,000 -> 1s
28: 'O', // 1,000,000,000,000,000,000,000,000,000 -> 1O
31: 'N', // 1,000,000,000,000,000,000,000,000,000,000 -> 1N
34: 'D', // 1,000,000,000,000,000,000,000,000,000,000,000 -> 1D
};
Compacts a number using an letter.
num: Number: The number to compact.zeroDecimal: Boolean: Whether or not to include a .0 at the end of a number.import { compactNumber } from '@reverse/compact';
compactNumber(1000000, false);
// "1M"
compactNumber(1500000, false);
// "1.5M"
compactNumber(2000000, true);
// "2.0M"
Compacts a number, with support for the K (1,000) unit.
num: Number: The number to compact.import { compactMiniNumber } from '@reverse/compact';
compactMiniNumber(1000000);
// "1M"
compactMiniNumber(1500);
// "1.5K"
Compacts seconds to days, hours, minutes, and seconds.
seconds: Number: The amount of seconds.import { compactTime } from '@reverse/compact';
compactTime(1234567890);
// "14288 Days 23 Hours 31 Minutes 30 Seconds"
FAQs
Functions for compacting numbers.
The npm package @reverse/compact receives a total of 2 weekly downloads. As such, @reverse/compact popularity was classified as not popular.
We found that @reverse/compact demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.