UNPKG

epoch-seconds

Version:

Returns the seconds passed since Unix epoch.

8 lines 194 B
/** @module epoch-seconds */ declare module "epoch-seconds" { /** * @returns {number} Seconds passed since Unix epoch (01 January 1970) */ export default function(): number; }