UNPKG

react-viewport-utils

Version:

Utility components for working with the viewport in react

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`; }