aboutsummaryrefslogtreecommitdiffstats
path: root/lib/logger.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/logger.js')
-rw-r--r--lib/logger.js14
1 files changed, 3 insertions, 11 deletions
diff --git a/lib/logger.js b/lib/logger.js
index 7e0c516..d4c5dc9 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -79,21 +79,13 @@ exports.generateTimeSheet = function generateTimeSheet() {
};
function timeSheetRecordsPrinter(records) {
- function leadingZero(n) {
- // pads a single number with a leading zero. Heh.
- var s = n.toString();
- if (s.length === 1) {
- s = "0" + s;
- }
- return s;
- }
-
var commentBugRE = new RegExp("[bB]ug\\s+([0-9]+)","g");
// sort the records into temporary array
var tmpArr = [];
var today = new Date();
- var todayStr = today.getFullYear()+"-"+leadingZero(today.getMonth()+1)+
- "-"+leadingZero(today.getDate());
+ var todayStr = today.getFullYear() + "-" +
+ xrpc.leadingZero(today.getMonth()+1) + "-" +
+ xrpc.leadingZero(today.getDate());
var outStr = '<!DOCTYPE html>' +
"<html><head>\n"+
"<meta charset='utf-8'/>\n"+