Skip to content

Commit 3c6b106

Browse files
William Beckerbrianc
William Becker
authored andcommitted
fix trailing whitespace breaking jshint
1 parent b7f8429 commit 3c6b106

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/types/textParsers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var parseDate = function(isoDate) {
1717
return new Date(isoDate);
1818
}
1919
}
20-
var isBC = /BC$/.test(isoDate);
20+
var isBC = /BC$/.test(isoDate);
2121
var _year = parseInt(match[1], 10);
2222
var isFirstCentury = (_year > 0) && (_year < 100);
2323
var year = (isBC ? "-" : "") + match[1];
@@ -65,7 +65,7 @@ var parseDate = function(isoDate) {
6565
else {
6666
date = new Date(year, month, day, hour, min, seconds, mili);
6767
}
68-
68+
6969
if (isFirstCentury) {
7070
date.setUTCFullYear(year);
7171
}

0 commit comments

Comments
 (0)