hardlounge/client/js/libs/handlebars/tz.js

8 lines
125 B
JavaScript
Raw Normal View History

"use strict";
2017-04-29 06:31:04 -04:00
const moment = require("moment");
2016-03-11 15:14:15 -05:00
2017-04-29 06:31:04 -04:00
module.exports = function(time) {
return moment(time).format("HH:mm");
2016-12-18 10:53:28 -05:00
};