decide.nolog.cz/app/helpers/formatted-date.js

10 lines
352 B
JavaScript
Raw Normal View History

2014-10-25 00:59:06 +02:00
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' , ''));
}
}