more linting

This commit is contained in:
Gareth Jones 2013-05-30 08:45:15 +10:00
parent 46ae1a586d
commit f998d7e81a

View File

@ -1,3 +1,4 @@
"use strict";
exports.ISO8601_FORMAT = "yyyy-MM-dd hh:mm:ss.SSS"; exports.ISO8601_FORMAT = "yyyy-MM-dd hh:mm:ss.SSS";
exports.ISO8601_WITH_TZ_OFFSET_FORMAT = "yyyy-MM-ddThh:mm:ssO"; exports.ISO8601_WITH_TZ_OFFSET_FORMAT = "yyyy-MM-ddThh:mm:ssO";
exports.DATETIME_FORMAT = "dd MM yyyy hh:mm:ss.SSS"; exports.DATETIME_FORMAT = "dd MM yyyy hh:mm:ss.SSS";
@ -53,8 +54,12 @@ exports.asString = function(/*format,*/ date) {
var os = Math.abs(date.getTimezoneOffset()); var os = Math.abs(date.getTimezoneOffset());
var h = String(Math.floor(os/60)); var h = String(Math.floor(os/60));
var m = String(os%60); var m = String(os%60);
h.length == 1? h = "0"+h:1; if (h.length == 1) {
m.length == 1? m = "0"+m:1; h = "0" + h;
}
if (m.length == 1) {
m = "0" + m;
}
return date.getTimezoneOffset() < 0 ? "+"+h+m : "-"+h+m; return date.getTimezoneOffset() < 0 ? "+"+h+m : "-"+h+m;
} }
}; };