refactor: style
This commit is contained in:
parent
43401210c3
commit
d85085d16f
|
@ -48,7 +48,7 @@ export class I18n<T extends ILocale> {
|
|||
}
|
||||
|
||||
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) {
|
||||
console.error(`Missing locale parameters: ${parameters.join(', ')} at ${String(p)}`);
|
||||
|
|
Loading…
Reference in New Issue