remove trailing slashes
This commit is contained in:
parent
b30b2f7229
commit
c8e56ac293
|
|
@ -62,7 +62,7 @@ function useCodeFrame(stack: StackFrame[] | undefined, sources: Map<string, mode
|
||||||
return '';
|
return '';
|
||||||
|
|
||||||
const targetLine = selectedFrame?.line ?? 0;
|
const targetLine = selectedFrame?.line ?? 0;
|
||||||
|
|
||||||
const lines = source.content.split('\n');
|
const lines = source.content.split('\n');
|
||||||
const start = Math.max(0, targetLine - width);
|
const start = Math.max(0, targetLine - width);
|
||||||
const end = Math.min(lines.length, targetLine + width);
|
const end = Math.min(lines.length, targetLine + width);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue