mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 12:03:08 +02:00
Fix bug
This commit is contained in:
parent
7bec5e52be
commit
e7cd3d3707
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,8 @@ const elements = [
|
||||||
for (let i = 1; i < code.length; i++) {
|
for (let i = 1; i < code.length; i++) {
|
||||||
const char = code[i];
|
const char = code[i];
|
||||||
if (char == '\\') {
|
if (char == '\\') {
|
||||||
|
str += char;
|
||||||
|
str += code[i + 1] || '';
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
} else if (char == begin) {
|
} else if (char == begin) {
|
||||||
|
@ -140,6 +142,8 @@ const elements = [
|
||||||
for (let i = 1; i < code.length; i++) {
|
for (let i = 1; i < code.length; i++) {
|
||||||
const char = code[i];
|
const char = code[i];
|
||||||
if (char == '\\') {
|
if (char == '\\') {
|
||||||
|
regexp += char;
|
||||||
|
regexp += code[i + 1] || '';
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
} else if (char == '/') {
|
} else if (char == '/') {
|
||||||
|
|
Loading…
Reference in a new issue