From 75faae62ae4934d0f08020eaa5e12353d51b836b Mon Sep 17 00:00:00 2001 From: Daniel Nalborczyk Date: Thu, 12 Jan 2023 21:20:55 -0500 Subject: [PATCH] Return consistent boolean value --- acorn/src/identifier.js | 1 + 1 file changed, 1 insertion(+) diff --git a/acorn/src/identifier.js b/acorn/src/identifier.js index 9ab295bb1..3bd4b8871 100644 --- a/acorn/src/identifier.js +++ b/acorn/src/identifier.js @@ -49,6 +49,7 @@ function isInAstralSet(code, set) { pos += set[i + 1] if (pos >= code) return true } + return false } // Test whether a given character code starts an identifier.