remove debug message, working on #50

This commit is contained in:
harttle
2017-12-08 00:28:51 +08:00
parent 49cb7a8c36
commit b24582c2c4
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -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 () {
-1
View File
@@ -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, '')
}