Interface CollationOptions

interface CollationOptions {
    alternate?: string;
    backwards?: boolean;
    caseFirst?: string;
    caseLevel?: boolean;
    locale: string;
    maxVariable?: string;
    normalization?: boolean;
    numericOrdering?: boolean;
    strength?: number;
}

Properties

alternate?: string
backwards?: boolean
caseFirst?: string
caseLevel?: boolean
locale: string
maxVariable?: string
normalization?: boolean
numericOrdering?: boolean
strength?: number