3 /* This require looks HORRIBLE, but it's a way to use the non-aliased moment */
4 /* Webpack config will alias all usages of moment to this module */
5 var realMoment
= require('../../../node_modules/moment');
6 var context
= require('gitter-web-client-context');
8 realMoment
.locale(context
.lang());
9 realMoment
.defaultFormat
= 'YYYY-MM-DDTHH:mm:ss.SSSZ';
11 module
.exports
= realMoment
;