Skip to content

Commit 7134b9c

Browse files
Fix Lint
1 parent a0d195c commit 7134b9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/local/simple_db.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ export class SimpleDb {
279279
// Horrible hack to verify that idempotent functions can be run more
280280
// than once.
281281
.next(result => {
282-
if (idempotent && attemptNumber == 1) {
282+
if (idempotent && attemptNumber === 1) {
283283
class DOMException {}
284284
throw new DOMException();
285285
}

0 commit comments

Comments
 (0)