mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-01 07:47:59 +00:00
9ce16e99bc
* Add ui-util formatting & util * Update README
14 lines
432 B
TypeScript
14 lines
432 B
TypeScript
// Copyright 2017-2019 @polkadot/ui-util authors & contributors
|
|
// This software may be modified and distributed under the terms
|
|
// of the Apache-2.0 license. See the LICENSE file for details.
|
|
|
|
const NUMBER_REGEX = new RegExp('(\\d+?)(?=(\\d{3})+(?!\\d)|$)', 'g');
|
|
|
|
export default function formatDecimal (value: string): string {
|
|
const matched = value.match(NUMBER_REGEX);
|
|
|
|
return matched
|
|
? matched.join(',')
|
|
: value;
|
|
}
|