mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Prefer const. I love const
This commit is contained in:
@ -2138,7 +2138,7 @@ export function initDefaultSlashCommands() {
|
|||||||
if (!pattern) {
|
if (!pattern) {
|
||||||
throw new Error('Argument of \'pattern=\' cannot be empty');
|
throw new Error('Argument of \'pattern=\' cannot be empty');
|
||||||
}
|
}
|
||||||
let re = regexFromString(pattern.toString());
|
const re = regexFromString(pattern.toString());
|
||||||
if (!re) {
|
if (!re) {
|
||||||
throw new Error('The value of \'pattern\' argument is not a valid regular expression.');
|
throw new Error('The value of \'pattern\' argument is not a valid regular expression.');
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user