UNPKG
unix-time
Version:
latest (1.0.1)
1.0.1
1.0.0
Convert a date to a unix timestamp
segmentio/unix-time
unix-time
/
lib
/
index.js
10 lines
(7 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Converts a
date
to a unix
time
stamp */
module
.exports =
function
(date)
{
date
= new Date(
date
);
return
Math.
floor
(
date
.getTime() /
1000
); }