Fix syntax error
This commit is contained in:
@@ -236,7 +236,7 @@ Meta.createLineHandler = function (ref, errorHandler) {
|
|||||||
// which has since been archived.
|
// which has since been archived.
|
||||||
// Thus, accept both the first and second lines you process as valid initial state
|
// Thus, accept both the first and second lines you process as valid initial state
|
||||||
// preferring the second if it exists
|
// preferring the second if it exists
|
||||||
if (index < 2 && line typeof(line) === 'object') {
|
if (index < 2 && line && typeof(line) === 'object') {
|
||||||
// special case!
|
// special case!
|
||||||
ref.meta = line;
|
ref.meta = line;
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user