From 1bc46045ba5bd66355a73ded8acea81cb559741b Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 16 Oct 2025 14:09:19 -0700 Subject: [PATCH] Update value.ts --- src/value.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/value.ts b/src/value.ts index 3635305..4edb9e4 100644 --- a/src/value.ts +++ b/src/value.ts @@ -141,7 +141,6 @@ export function isEqual(a: Value, b: Value): boolean { return true } case 'regex': { - if (!(b.value instanceof RegExp)) return false return String(a.value) === String(b.value) } case 'function':