Removed unused Downcoder.chars.
Unused -- other than as a local variable -- since its introduction in
953badbea5
This commit is contained in:
parent
18eb852874
commit
0a627dbe73
|
@ -134,8 +134,7 @@
|
|||
for (const lookup of ALL_DOWNCODE_MAPS) {
|
||||
Object.assign(Downcoder.map, lookup);
|
||||
}
|
||||
Downcoder.chars = Object.keys(Downcoder.map);
|
||||
Downcoder.regex = new RegExp(Downcoder.chars.join('|'), 'g');
|
||||
Downcoder.regex = new RegExp(Object.keys(Downcoder.map).join('|'), 'g');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue