UNPKG

lesgo

Version:

Core framework for lesgo node.js serverless framework.

10 lines (9 loc) 217 B
/** * Returns the current timestamp in seconds. * * @returns The current timestamp in seconds. */ const getCurrentTimestamp = () => { return Math.floor(Date.now() / 1000); }; export default getCurrentTimestamp;