Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 294 Bytes

unix-timestamp.md

File metadata and controls

12 lines (9 loc) · 294 Bytes
id title
unix-timestamp
Unix Timestamp

This returns the Unix timestamp (the number of seconds since the Unix Epoch) of the Day.js object.

dayjs('2019-01-25').unix() // 1548381600

This value is floored to the nearest second, and does not include a milliseconds component.