3 var moment
= require('moment');
5 /** Returns an full, unabbreviated time format */
6 module
.exports
= function timeFormat(time
, options
) {
12 tzOffset
= options
.tzOffset
;
17 time
.locale(lang
=== 'en' ? 'en-gb' : lang
);
20 if (tzOffset
!== undefined) {
21 time
.utcOffset(-tzOffset
);
24 return time
.format('LLL');