UNPKG

functional-google-cloud

Version:

Google Cloud Utilities functions in Functional Programming Style

10 lines 246 B
/** * ```haskell * getUnixTimestampInMinutes :: Int -> Int * ``` */ export const getUnixTimestampIn = (seconds) => { const secondsInMs = seconds * 1000; return Date.now() + secondsInMs; }; //# sourceMappingURL=DateTime.js.map