Ghost/ghost/admin/app/helpers/gh-format-timeago.js

18 lines
557 B
JavaScript

import {helper} from 'ember-helper';
export function timeAgo(params) {
if (!params || !params.length) {
return;
}
let [timeago] = params;
return moment(timeago).from(moment.utc());
}
export default helper(function (params) {
return timeAgo(params);
// stefanpenner says cool for small number of timeagos.
// For large numbers moment sucks => single Ember.Object based clock better
// https://github.com/manuelmitasch/ghost-admin-ember-demo/commit/fba3ab0a59238290c85d4fa0d7c6ed1be2a8a82e#commitcomment-5396524
});