Guest User

Untitled

a guest
Mar 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. * Method that creates a Data from a Unix Timestamp
  3. */
  4. function unixTimestampToDate(unix_timestamp) {
  5. return new Date(unix_timestamp * 1000);
  6. }
  7.  
  8. /**
  9. * Method that convert Date to Unixtimestamp.
  10. */
  11. function dateToUnixTimestamp(date) {
  12. return date.getTime() / 1000;
  13. }
Add Comment
Please, Sign In to add comment