mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-08 12:37:05 +03:00
Switch back to es6
This commit is contained in:
@@ -270,8 +270,8 @@ export default class Utils {
|
|||||||
getLocalizedMessage(text: string): string | false {
|
getLocalizedMessage(text: string): string | false {
|
||||||
console.log(chrome.i18n.getMessage("forceChannelCheckPopup"));
|
console.log(chrome.i18n.getMessage("forceChannelCheckPopup"));
|
||||||
const valNewH = text.replace(/__MSG_(\w+)__/g, function(match, v1) {
|
const valNewH = text.replace(/__MSG_(\w+)__/g, function(match, v1) {
|
||||||
return v1 ? chrome.i18n.getMessage(v1).replaceAll("<", "<")
|
return v1 ? chrome.i18n.getMessage(v1).replace(/</g, "<")
|
||||||
.replaceAll('"', """).replaceAll("\n", "<br/>") : "";
|
.replace(/"/g, """).replace(/\n/g, "<br/>") : "";
|
||||||
});
|
});
|
||||||
|
|
||||||
if(valNewH != text) {
|
if(valNewH != text) {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"target": "es2021",
|
"target": "es6",
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
"sourceMap": false,
|
"sourceMap": false,
|
||||||
"outDir": "dist/js",
|
"outDir": "dist/js",
|
||||||
|
|||||||
Reference in New Issue
Block a user