Ghost/ghost/admin/app/helpers/gh-format-time-scheduled.js
Kevin Ansfield e74e2e039e Update code to match eslint rules
no issue
- switch `jscs` and `jshint` inline config to `eslint` config
- fix eslint errors, predominantly in tests where the config now the main app config more closely
2016-11-14 13:26:00 +00:00

19 lines
427 B
JavaScript

import {helper} from 'ember-helper';
export function timeToSchedule(params) {
if (!params || !params.length) {
return;
}
let [, blogTimezone] = params;
let [time] = params;
if (blogTimezone.get('isFulfilled')) {
return moment.utc(time).tz(blogTimezone.get('content')).format('DD MMM YYYY, HH:mm');
}
}
export default helper(function (params) {
return timeToSchedule(params);
});