rosa-build/app/assets/javascripts/angularjs/services/datetime_formatter.js.coffee

10 lines
220 B
CoffeeScript
Raw Normal View History

2014-12-24 18:41:13 +00:00
DateTimeFormatter = ->
UtcFormatter = (api_time) ->
moment.utc(api_time * 1000).format "YYYY-MM-DD HH:mm:ss UTC"
utc: UtcFormatter
angular
.module("RosaABF")
.service "DateTimeFormatter", DateTimeFormatter