Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 431 Bytes

File metadata and controls

25 lines (17 loc) · 431 Bytes

Numeral

Importing the Numeral class

import { Numeral } from "@payvo/sdk-intl";

Format the given number

Numeral.make("en").format(5000)

Format the given number with a currency symbol as suffix

Numeral.make("en").formatAsCurrency(5000, "EUR")

Format the given number with a unit as suffix

Numeral.make("en").formatAsUnit(5000, "kilobyte")