perf: Use strict equals

This commit is contained in:
Daniel Tschinder
2019-01-15 13:13:58 -08:00
parent 8df0500f55
commit 0370af58f1
5 changed files with 8 additions and 8 deletions

View File

@@ -1630,7 +1630,7 @@ export default (superClass: Class<Parser>): Class<Parser> =>
this.match(tt.name) &&
(this.state.value === "type" ||
this.state.value === "interface" ||
this.state.value == "opaque")
this.state.value === "opaque")
) {
return false;
}