Merge remote-tracking branch 'jeremyevans/patch-1'

This commit is contained in:
brianc 2012-03-06 19:09:14 -06:00
commit 25ac351997

View File

@ -35,7 +35,7 @@ ArrayParser.prototype.newEntry = function(includeEmpty) {
var entry;
if (this.recorded.length > 0 || includeEmpty) {
entry = this.recorded.join("");
if (entry === "NULL") {
if (entry === "NULL" && !includeEmpty) {
entry = null;
}
if (entry !== null) {