diff options
Diffstat (limited to 'lib/xmlrpc.js')
-rw-r--r-- | lib/xmlrpc.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/xmlrpc.js b/lib/xmlrpc.js index c369e52..54dcd72 100644 --- a/lib/xmlrpc.js +++ b/lib/xmlrpc.js @@ -52,7 +52,6 @@ var leadingZero = exports.leadingZero = function leadingZero(n) { var dateToISO8601 = exports.dateToISO8601 = function dateToISO8601( date) { // wow I hate working with the Date object - console.log("date = " + date); var year = date.getYear(); var month = leadingZero(date.getMonth()); var day = leadingZero(date.getDate()); @@ -61,7 +60,6 @@ var dateToISO8601 = exports.dateToISO8601 = function dateToISO8601( + leadingZero(date.getSeconds()); var converted = year + month + day + "T" + time; - console.log("date = " + converted); return converted; }; |