ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Variable COUNTRIESConst

    COUNTRIES: { name: string; code: string }[] = ...

    Supported countries for location-based features such as currency and shipping filters. Derived from the locations defined in config.json, excluding the "OTHER" fallback entry. Sorted alphabetically by country name.

    export const COUNTRIES = Object.entries(locations)
    .filter(([code]) => code !== "OTHER")
    .map(([code, { name }]) => ({ name, code }))
    .sort((a, b) => a.name.localeCompare(b.name));