humanize-from-now
Version:
A tiny function that generates momentjs like time from now string.
10 lines (9 loc) • 365 B
TypeScript
export declare const MS = 1;
export declare const SECOND: number;
export declare const MINUTE: number;
export declare const HOUR: number;
export declare const DAY: number;
export declare const MONTH: number;
export declare const YEAR: number;
export declare const FAILOVER = "N/A";
export default function (time: number | string | Date, failover?: string): string;