We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c499b2a commit d7db622Copy full SHA for d7db622
src/main/cljs/cljs/stacktrace.cljc
@@ -411,7 +411,9 @@ goog.events.getProxy/f<@http://localhost:9000/out/goog/events/events.js:276:16"
411
[function file-and-line] (string/split frame-str #"\s+")
412
[file-part line-part] (string/split file-and-line #":")]
413
{:file (string/replace (.substring file-part 1)
414
- (str output-dir File/separator) "")
+ (str output-dir
415
+ #?(:clj File/separator :cljs "/"))
416
+ "")
417
:function function
418
:line (when (and line-part (not (string/blank? line-part)))
419
(parse-int
0 commit comments