UNPKG

@parcel/utils

Version:

Blazing fast, zero configuration web application bundler

6 lines (4 loc) 171 B
// @flow strict-local export default function prettifyTime(timeInMs: number): string { return timeInMs < 1000 ? `${timeInMs}ms` : `${(timeInMs / 1000).toFixed(2)}s`; }