You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure how it happened, but getSourceMappingUrl is operating on an escaped string, so, the newline character is actually \\n instead of \n. I was able to fix locally by adding \\ to the regex on this line:
match=/^[^\r\n\\]+/.exec(substring);
but a better fix would be to unescape this string before matching
The text was updated successfully, but these errors were encountered:
Not sure how it happened, but
getSourceMappingUrl
is operating on an escaped string, so, the newline character is actually\\n
instead of\n
. I was able to fix locally by adding\\
to the regex on this line:but a better fix would be to unescape this string before matching
The text was updated successfully, but these errors were encountered: