MyCrypto/common/utils/formatters.js

6 lines
150 B
JavaScript
Raw Normal View History

//flow
export function toFixedIfLarger(number: number, fixedSize: number = 6): string {
2017-06-24 12:53:53 -07:00
return parseFloat(number.toFixed(fixedSize)).toString();
}