ChemPal Documentation - v1.6.0
    Preparing search index...

    Variable COUNTRIESConst

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

    Supported countries for location-based features such as currency and shipping filters. Sourced from country-list-js (full ISO 3166-1 alpha-2 list) and sorted alphabetically by country name. Codes that the library can't name fall back to the raw code.

    export const COUNTRIES = Object.entries(countriesByIso2)
    .map(([code, record]) => ({ code, name: record?.name ?? code }))
    .sort((a, b) => a.name.localeCompare(b.name));