refactor: use Object.fromEntries() instead of in-house implementation (#6401)
* refactor: use Object.fromEntries() instead of in-house implementation * Remove extra type assertions
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
import { clientDb, entries } from './db';
|
||||
import { fromEntries } from '../prelude/array';
|
||||
|
||||
declare const _LANGS_: string[];
|
||||
declare const _VERSION_: string;
|
||||
@ -15,7 +14,7 @@ export const apiUrl = url + '/api';
|
||||
export const wsUrl = url.replace('http://', 'ws://').replace('https://', 'wss://') + '/streaming';
|
||||
export const lang = localStorage.getItem('lang');
|
||||
export const langs = _LANGS_;
|
||||
export const getLocale = async () => fromEntries((await entries(clientDb.i18n)) as [string, string][]);
|
||||
export const getLocale = async () => Object.fromEntries((await entries(clientDb.i18n)) as [string, string][]);
|
||||
export const version = _VERSION_;
|
||||
export const env = _ENV_;
|
||||
export const instanceName = siteName === 'Misskey' ? null : siteName;
|
||||
|
Reference in New Issue
Block a user