Creates a number formatter function based on the specified locale, options, or specifier.

The locale to use for formatting.

The formatting options or specifier.

A function that formats a number according to the specified locale and options or specifier.

  • Creates a number formatter function based on the specified locale.

    Parameters

    • locale: string

      The locale to use for formatting.

    Returns NumberFormatter

    A function that formats a number according to the specified locale.

  • Creates a number formatter function based on the specified locale and specifier.

    Parameters

    • locale: string

      The locale to use for formatting.

    • specifier: string

      The formatting specifier string.

    Returns NumberFormatter

    A function that formats a number according to the specified locale and specifier.

    If the number format specifier is invalid.

  • Creates a number formatter function based on the specified locale and options.

    Parameters

    • locale: string

      The locale to use for formatting.

    • options: NumberFormatOptions

      The formatting options.

    Returns NumberFormatter

    A function that formats a number according to the specified locale and options.