Hi there,
The latest version (3114) crashes consistently when having to render these lines:
function isRTL(e) {
var t = “A-Za-zÀ-ÖØ-öø-ʸ̀-ࠀ-Ⰰ-﷾--�”,
a = “֑-߿יִ-﷽ﹰ-ﻼ”,
s = new RegExp("^[^" + t + “]*[” + a + “]”);
return s.test(e)
}
These are actual lines of code from a Chrome plugin (https://chrome.google.com/webstore/detail/facebook-chat-downloader/kflkdhmijdgjnlbdkfgdmolcjnflmlhf)
Can I do anything to fix it or is this a serious bug?

