Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { translate } from 'i18n-calypso';
export const formatMsValue = ( msValue: number ): React.ReactElement | string | number => {
if ( msValue < 1000 ) {
return translate( '%(value)sms', {
comment: 'value to be displayed in milliseconds',
args: { value: Math.floor( msValue ) },
} );
}
return translate( '%(value)ss', {
comment: 'value to be displayed in seconds',
args: { value: ( msValue / 1000 ).toFixed( 2 ) },
} );
};