Update value.ts

This commit is contained in:
Corey Johnson 2025-10-16 14:09:19 -07:00
parent 2be87c381d
commit 1bc46045ba

View File

@ -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':