refactor: style

This commit is contained in:
Acid Chicken (硫酸鶏)
2024-01-19 11:54:00 +09:00
committed by GitHub
parent 43401210c3
commit d85085d16f

View File

@@ -48,7 +48,7 @@ export class I18n<T extends ILocale> {
} }
if (typeof value === 'string') { if (typeof value === 'string') {
const parameters = Array.from(value.matchAll(/\{(\w+)\}/g)).map(([, parameter]) => parameter); const parameters = Array.from(value.matchAll(/\{(\w+)\}/g), ([, parameter]) => parameter);
if (parameters.length) { if (parameters.length) {
console.error(`Missing locale parameters: ${parameters.join(', ')} at ${String(p)}`); console.error(`Missing locale parameters: ${parameters.join(', ')} at ${String(p)}`);