| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 76dab34 commit 73aa0ae
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -222,7 +222,8 @@ function getErrMessage(message, fn) { | |||
| 222 | 222 | } | |
| 223 | 223 | const frames = StringPrototypeSplit(message, '\n'); | |
| 224 | 224 | message = ArrayPrototypeShift(frames); | |
| 225 | - for (const frame of frames) { | ||
| 225 | + for (let i = 0; i < frames.length; i++) { | ||
| 226 | + const frame = frames[i]; | ||
| 226 | 227 | let pos = 0; | |
| 227 | 228 | while (pos < column && (frame[pos] === ' ' || frame[pos] === '\t')) { | |
| 228 | 229 | pos++; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments