github.com/manicqin/nomad@v0.9.5/ui/app/helpers/format-month-ts.js (about)

     1  import moment from 'moment';
     2  import Helper from '@ember/component/helper';
     3  
     4  export function formatMonthTs([date]) {
     5    const format = 'MMM DD HH:mm:ss ZZ';
     6    return moment(date).format(format);
     7  }
     8  
     9  export default Helper.helper(formatMonthTs);