Add ui-util formatting & util (#76)

* Add ui-util formatting & util

* Update README
This commit is contained in:
Jaco Greeff
2019-02-18 11:02:42 +01:00
committed by GitHub
parent 6e9edc8065
commit 9ce16e99bc
16 changed files with 672 additions and 32 deletions
@@ -0,0 +1,19 @@
// 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.
import formatDecimal from './formatDecimal';
describe('formatDecimal', () => {
it('formats decimals in number groupings', () => {
expect(formatDecimal('12345')).toEqual('12,345');
});
it('formats decimal-only in number groupings', () => {
expect(formatDecimal('test6789')).toEqual('6,789');
});
it('returns input for non-decimal', () => {
expect(formatDecimal('test')).toEqual('test');
});
});