1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Chore: Finished applying eqeqeq rule

This commit is contained in:
Laurent Cozic
2022-07-23 11:33:12 +02:00
parent 052d9f03d6
commit ce02d4c94f
34 changed files with 46 additions and 42 deletions

View File

@ -145,7 +145,7 @@ function math_inline(state: any, silent: boolean) {
}
// Even number of escapes, potential closing delimiter found
if ((match - pos) % 2 == 1) {
if ((match - pos) % 2 === 1) {
break;
}
match += 1;