UNPKG

281 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3import { bnToBn } from "../bn/toBn.js";
4import { formatDecimal } from "./formatDecimal.js";
5export function formatNumber(value) {
6 return formatDecimal(bnToBn(value).toString());
7}
\No newline at end of file