
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
decimal-format
Advanced tools
format decimal numbers with a specific pattern
$ npm install decimal-format --save
or use pnpm
$ pnpm add decimal-format --save
import DecimalFormat from 'decimal-format';
const df = new DecimalFormat('#,##0.0#');
df.format(1234.995); // 1,235.0
df.format(1234.956); // 1,234.96
const df1 = new DecimalFormat('#,##0.0#%');
df1.format(0.34995); // 35.0%
const df2 = new DecimalFormat('#,##0.0#‰');
df2.format(0.034993); // 34.99‰
const df3 = new DecimalFormat('¥#,##0.00元');
df3.format(1234.995); // ¥1,235.00元
RoundingMode defines the rounding modes of the formatting
import DecimalFormat, { RoundingMode } from 'decimal-format';
const df = new DecimalFormat('#,##0.0#');
df.setRoundingMode(RoundingMode.UP); // round away from zero
df.format(2.1) // 3.0
df.format(-2.1) // -3.0
df.setRoundingMode(RoundingMode.UNNECESSARY) // assert that no rounding is necessary
df.format(2.11) // 2.11
df.format(2.123) // throw exception
RoundingMode
| Enum | Description |
|---|---|
| UP | round away from zero |
| DOWN | round towards zero |
| CEILING | round towards positive infinity |
| FLOOR | round towards negative infinity |
| HALF_UP | round towards "nearest neighbor" unless both neighbors are equidistant, in which case round up |
| HALF_DOWN | round towards "nearest neighbor" unless both neighbors are equidistant, in which case round down |
| HALF_EVEN | round towards the "nearest neighbor" unless both neighbors are equidistant, in which case round toward the even neighbor |
| UNNECESSARY | assert that the requested operation has an exact result, hence no rounding is necessary |
FAQs
format decimal
The npm package decimal-format receives a total of 561 weekly downloads. As such, decimal-format popularity was classified as not popular.
We found that decimal-format demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.