From 7d9f2bdb47ea62c9dc5280819a31f21bac02c523 Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Fri, 5 Apr 2013 23:44:24 -0700 Subject: [PATCH] Removed commented code --- moment.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/moment.js b/moment.js index 1700d366c..8ded4d044 100644 --- a/moment.js +++ b/moment.js @@ -373,9 +373,7 @@ this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); } // test the regex - // console.log("testing with regex " + this._monthsParse[i]); if (this._monthsParse[i].test(monthName)) { - // console.log("hit!"); return i; } } @@ -645,8 +643,6 @@ var a, b, datePartArray = config._a; - // console.log('attaft ' + token + ' ' + input + ' ' + config); - switch (token) { // MONTH case 'M' : // fall through to MM @@ -780,7 +776,6 @@ for (i = 0; i < tokens.length; i++) { parsedInput = (getParseRegexForToken(tokens[i]).exec(string) || [])[0]; - // console.log('parsedInput: ' + parsedInput); if (parsedInput) { string = string.slice(string.indexOf(parsedInput) + parsedInput.length); } -- 2.47.2