From f4e24f427f86a8f8a0aaa44af8db29bb7f62e071 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Wed, 5 Nov 2025 15:17:54 -0800 Subject: [PATCH] gimme all of it --- src/value.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/value.ts b/src/value.ts index 212a49e..0f74f5f 100644 --- a/src/value.ts +++ b/src/value.ts @@ -72,7 +72,6 @@ export function toValue(v: any, vm?: VM): Value /* throws */ { const stackLines = stack.split('\n') .slice(1) .filter(line => !line.includes('toValue')) - .slice(0, 3) .map(line => ' ' + line.trim()) .join('\n') throw new Error( @@ -201,7 +200,6 @@ export function fromValue(v: Value, vm?: VM): any { const stackLines = stack.split('\n') .slice(1) .filter(line => !line.includes('fromValue')) - .slice(0, 3) .map(line => ' ' + line.trim()) .join('\n') throw new Error(