mirror of
https://github.com/rjNemo/deno_hello
synced 2026-06-12 04:46:39 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import { locales } from "./data.ts";
|
|
|
|
export const localesSize = Object.keys(locales).length;
|
|
|
|
/**
|
|
* Return a given locale identified by its id
|
|
* @param id unique identifier
|
|
*/
|
|
export const getLocaleById = (id: number) => Object.values(locales)[id - 1];
|