Files
DefinitelyTyped/types/wnumb/wnumb-tests.ts
2017-12-21 13:43:03 -08:00

34 lines
451 B
TypeScript

const moneyFormat = wNumb({
mark: '.',
thousand: ',',
prefix: '$ ',
postfix: ' p.p.'
});
moneyFormat.to(301980.62);
moneyFormat.from('$ 301,980.62 p.p.');
let Format = wNumb({
prefix: '$ ',
decimals: 3,
thousand: ','
});
Format = wNumb({
thousand: '.',
encoder: a => a * 1E7,
decoder: a => a / 1E7,
});
Format = wNumb({
prefix: '$',
postfix: ',-',
thousand: ','
});
Format = wNumb({
prefix: '$',
negativeBefore: '[NEGATIVE] '
});