Skip to content

Commit 94b1909

Browse files
committed
Fix regex escape sequence in Ni function
1 parent bec2569 commit 94b1909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/assets/js/asciinema-player.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19503,7 +19503,7 @@ function registerAsciinemaPlayerElement() {
1950319503
};
1950419504

1950519505
function Ni(a) {
19506-
return [v.h('"'), v.h(a.replace(RegExp('[\\\\"\b\f\n\r\t]', "g"), function (a) {
19506+
return [v.h('"'), v.h(a.replace(RegExp('[\\\\\\"\b\f\n\r\t]', "g"), function (a) {
1950719507
return Mi[a]
1950819508
})), v.h('"')].join("")
1950919509
}

0 commit comments

Comments
 (0)