diff --git a/src/util/strftime.js b/src/util/strftime.js index 9eeb0acf3..8afd3797b 100644 --- a/src/util/strftime.js +++ b/src/util/strftime.js @@ -163,7 +163,6 @@ var formatCodes = { }, z: function (d) { var tz = d.getTimezoneOffset() / 60 * 100 - console.log('tz', tz) return (tz > 0 ? '-' : '+') + _number.pad(Math.abs(tz), 4) }, '%': function () { diff --git a/src/whitespace-ctrl.js b/src/whitespace-ctrl.js index c500ae6a0..b1584443e 100644 --- a/src/whitespace-ctrl.js +++ b/src/whitespace-ctrl.js @@ -33,7 +33,6 @@ function shouldTrimRight (token, inRaw, options) { function trimLeft (token, greedy) { if (!token || token.type !== 'html') return - console.log('trimming', token.value) var rLeft = greedy ? /\s+$/g : /[\t\r ]*$/g token.value = token.value.replace(rLeft, '') }