@neutrium/formatter - v1.0.1
    Preparing search index...

    Interface RuntimeCapabilities

    Immutable, process-wide snapshot of Intl features used by the package. Obtain it through runtimeCapabilities() from @neutrium/formatter/diagnostics.

    interface RuntimeCapabilities {
        compactNotation: boolean;
        durationFormat: boolean;
        exactDecimalStrings: boolean;
        negativeSignDisplay: boolean;
        numberFormat: boolean;
        numberFormatRange: boolean;
        roundingIncrement: boolean;
        roundingMode: boolean;
        roundingPriority: boolean;
        supportedValuesOf: boolean;
        trailingZeroDisplay: boolean;
        unitFormat: boolean;
    }
    Index
    compactNotation: boolean

    Whether Intl.NumberFormat supports compact notation.

    durationFormat: boolean

    Whether native Intl.DurationFormat is available.

    exactDecimalStrings: boolean

    Whether Intl.NumberFormat preserves exact integer and fractional decimal strings.

    negativeSignDisplay: boolean

    Whether Intl.NumberFormat supports signDisplay: "negative".

    numberFormat: boolean

    Whether Intl.NumberFormat is available.

    numberFormatRange: boolean

    Whether Intl.NumberFormat implements both range methods.

    roundingIncrement: boolean

    Whether Intl.NumberFormat honors the roundingIncrement option.

    roundingMode: boolean

    Whether Intl.NumberFormat honors the roundingMode option.

    roundingPriority: boolean

    Whether Intl.NumberFormat honors the roundingPriority option.

    supportedValuesOf: boolean

    Whether Intl.supportedValuesOf is available.

    trailingZeroDisplay: boolean

    Whether Intl.NumberFormat honors the trailingZeroDisplay option.

    unitFormat: boolean

    Whether Intl.NumberFormat supports measurement-unit presentation.