A small utility library that adds commas to numbers for thousands separation. Currently at version 1.0.0, this package provides a single function that takes a numeric input and returns a string with comma formatting (e.g., 35666 becomes '35,666'). It is designed for simplicity and minimal dependencies, suitable for basic number formatting in Node.js projects. The library is not actively maintained and offers no customization options, making it less flexible than alternatives like numeral.js or Intl.NumberFormat.
npm install number-formatter-support-fdxNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates basic usage: requiring the default export and formatting a number.
Use require() or a bundler like webpack/Vite. Alternatively, switch to Intl.NumberFormat for native support.
Add 'declare module "number-formatter-support-fdx";' in a global .d.ts file.
Always pass a valid number to the function.
Use default import: import numFormatter from 'number-formatter-support-fdx'
Run 'npm install number-formatter-support-fdx' and verify package.json contains it.
No dependency data recorded yet.