Angularjs: timestamp to formatted UTC time with date helper Angularjs: timestamp to formatted UTC time with date helper angularjs angularjs

Angularjs: timestamp to formatted UTC time with date helper


I've found some solution with custom filter and momentjs library:

app.filter('moment', function() {      return function(input, format) {          return moment(parseInt(input)).utc().format(format);      };  });