Skip to content
This repository was archived by the owner on Aug 29, 2021. It is now read-only.

Commit 0c6bf6b

Browse files
committed
Updated code for lint.
1 parent f928842 commit 0c6bf6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/parsers/minecraft/nbt-path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ function parsePath(reader: StringReader): ReturnedInfo<PathParseResult> {
683683
}
684684
return helper.fail();
685685
}
686-
} else if (reader.peek() == " ") {
686+
} else if (reader.peek() === " ") {
687687
return helper.succeed(result);
688688
} else {
689689
return helper.fail(

0 commit comments

Comments
 (0)