Socket
Socket
Sign inDemoInstall

fast-number-formatter

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-number-formatter

Fast easy number formatting


Version published
Maintainers
1
Weekly downloads
3,305
increased by20.23%

Weekly downloads

Readme

Source

npm npm bundle size Build Status codecov Greenkeeper badge semantic-release Commitizen friendly

fast-number-formatter

👉 Take note that this package is in still early stage of development, and there might be breaking changes introduced while we are finalizing on the API

A NumberFormatter which forces developpers to reuse the format instead of creating new copies for each number (Which should theoretically make it faster)

yarn add fast-number-formatter

# or with npm

npm install fast-number-formatter --save

Examples

import { formatNumber } from 'fast-number-formatter'

const formattedString = formatNumber(12345.6789);
// 12,345.67

const threeDecimalString = formatNumber(12345.6789, 3);
// 12,345.678

setCurrentCulture('da-DK');
const oneDecimalDanishString = formatNumber(12345.6789, 1);
// 12.345,6

const formatter = getNumberFormatter(4, 'da-DK');
const fourDecimalDanishString = formatter.format(12345.6789)
// 12.345,6789

const options: NumberFormatOptions = {
    minimumFractionDigits: 1,
    maximumFractionDigits: 3,
    localeMatcher: LocaleMatcher.bestFit,
    style: Style.decimal,
    unitDisplay: UnitDisplay.long,
    notation: Notation.standard
};
const formatter = getCustomNumberFormatter(options, 'da-DK');
const firstCustomFormattedString = formatter.format(12345.6789)
// 12.345,678
const secondCustomFormattedString = formatter.format(12345)
// 12.345,0

Keywords

FAQs

Last updated on 14 Sep 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc