Skip to content

Instantly share code, notes, and snippets.

@jakangah
Created September 24, 2019 10:30
Show Gist options
  • Save jakangah/9d2993dbf3511f2e8d512aff5f460dfd to your computer and use it in GitHub Desktop.
Save jakangah/9d2993dbf3511f2e8d512aff5f460dfd to your computer and use it in GitHub Desktop.
convert date to array
'use strict';
exports.dateToArray = date => {
date = date.getUTCDate ? date : new Date(date);
return [
date.getUTCFullYear(),
date.getUTCMonth() + 1,
date.getUTCDate(),
date.getUTCHours(),
date.getUTCMinutes(),
date.getUTCSeconds()
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment