function formatDate(unixTime, options = {}) {
if (!options['day'] || options['day'] !== 'hide') {
options['day'] = 'numeric';
} else {
delete options['day'];
}
options = addDefaults(options, {
year: 'numeric',
month: 'short'
});
return new Date(unixTime * 1000.0).toLocaleDateString(options);
}