UNPKG

epoch-seconds

Version:

Returns the seconds passed since Unix epoch.

9 lines 253 B
/** @module epoch-seconds */ declare module "epoch-seconds" { /** * @param {number} [compareValue] * @returns {number} Seconds passed since Unix epoch (01 January 1970) */ export default function(compareValue?: number): number; }