frequi_origin/src/shared/formatters.ts

20 lines
398 B
TypeScript
Raw Normal View History

2020-07-11 15:12:16 +00:00
import * as moment from 'moment';
2020-06-05 09:22:14 +00:00
2020-07-11 15:12:16 +00:00
export function formatPercent(value: number) {
return value ? `${(value * 100).toFixed(3)}%` : '';
2020-06-02 11:05:16 +00:00
}
2020-07-11 15:12:16 +00:00
export function formatPrice(value: number) {
return value ? value.toFixed(8) : '';
}
2020-07-11 15:12:16 +00:00
export function timestampms(ts: number): string {
2020-06-05 09:22:14 +00:00
return moment(ts).format('YYYY-MM-DD hh:mm:ss');
}
export default {
formatPrice,
formatPercent,
2020-06-05 09:22:14 +00:00
timestampms,
};