summaryrefslogtreecommitdiff
path: root/src/parser/utils/nodes_match.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/utils/nodes_match.ts')
-rw-r--r--src/parser/utils/nodes_match.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser/utils/nodes_match.ts b/src/parser/utils/nodes_match.ts
index 563742635..7e4093994 100644
--- a/src/parser/utils/nodes_match.ts
+++ b/src/parser/utils/nodes_match.ts
@@ -1,5 +1,6 @@
// @ts-nocheck
+/** Compare two TemplateNodes to determine if they are equivalent */
export function nodes_match(a, b) {
if (!!a !== !!b) return false;
if (Array.isArray(a) !== Array.isArray(b)) return false;