UNPKG
lodate
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.0
date utility functions
github.com/Niklus/lodate
Niklus/lodate
lodate
/
utils
/
timestamp.js
9 lines
(8 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/** * Get the current timestamp in seconds *
@returns
{
number
} The current timestamp in seconds * *
@example
* timeStamp(); // 1620000000 */
export
const
timeStamp
= (
) =>
Math
.
floor
(
new
Date
().
getTime
() /
1000
);