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

    Variable CURRENCIESConst

    CURRENCIES: { code: string; symbol: string }[] = ...

    Currency options (code + symbol) for selectors, sorted alphabetically by code. Derived from CURRENCY_SYMBOL_MAP so the full set of currencies known to country-list-js is available.

    CURRENCIES[0] // { code: 'AED', symbol: 'AED' }
    
    export const CURRENCIES: { code: string; symbol: string }[] = Object.entries(CURRENCY_SYMBOL_MAP)
    .map(([code, symbol]) => ({ code, symbol }))
    .sort((a, b) => a.code.localeCompare(b.code));