diff options
author | 2022-04-05 06:36:19 -0700 | |
---|---|---|
committer | 2022-04-05 06:36:19 -0700 | |
commit | 70f9294e15d73f8f221116cee032db859a183112 (patch) | |
tree | 80695a388fcb55c822241629386c8e29f672ca5d /packages/bun-error/index.tsx | |
parent | 2c0e8e0a99932fbf10872cce4ad417d24cdf262e (diff) | |
download | bun-70f9294e15d73f8f221116cee032db859a183112.tar.gz bun-70f9294e15d73f8f221116cee032db859a183112.tar.zst bun-70f9294e15d73f8f221116cee032db859a183112.zip |
[bun:error] Fix exception
Diffstat (limited to 'packages/bun-error/index.tsx')
-rw-r--r-- | packages/bun-error/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/bun-error/index.tsx b/packages/bun-error/index.tsx index a627a7a8d..5211af8ea 100644 --- a/packages/bun-error/index.tsx +++ b/packages/bun-error/index.tsx @@ -1390,6 +1390,7 @@ export function renderRuntimeError(error: Error) { remapped[1]; }, console.error); } else { + if (!mappings) return null; var frame = exception.stack.frames[frameIndex]; const { line, column_start } = frame.position; const remapped = remapPosition(mappings, line, column_start); |