UNPKG

@toreda/time

Version:

Simple, small footprint library for common time operations and converting between units of time.

7 lines (6 loc) 140 B
/** * Supported time units. * * @category Time Units */ export type TimeUnit = 'm' | 's' | 'h' | 'd' | 'mo' | 'w' | 'ms' | 'y' | 'μs';