decide.nolog.cz/app/helpers/formatted-date.js
2014-11-01 18:00:46 +01:00

12 lines
No EOL
373 B
JavaScript

/* global moment */
export default function(date, options) {
var times = options.hash.times ? options.hash.times : false,
format = options.hash.format ? options.hash.format : 'LLLL';
if (times === true) {
return moment(date).format( format );
}
else {
return moment(date).format(moment.localeData().longDateFormat( format ).replace('LT' , ''));
}
}