Skip to content

Commit e912e59

Browse files
authored
Update README.md
1 parent 6942c18 commit e912e59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ import 'subscript/feature/object.js';
156156
// add identity operators (precedence of comparison)
157157
binary('===', 9), binary('!==', 9)
158158
operator('===', (a, b) => (a = compile(a), b = compile(b), ctx => a(ctx)===b(ctx)))
159-
operator('===', (a, b) => (a = compile(a), b = compile(b), ctx => a(ctx)!==b(ctx)))
159+
operator('!==', (a, b) => (a = compile(a), b = compile(b), ctx => a(ctx)!==b(ctx)))
160160

161161
// add nullish coalescing (precedence of logical or)
162162
binary('??', 3)

0 commit comments

Comments
 (0)