• Returns a boolean formatter function for the specified locale. The formatter function converts boolean values to localized strings.

    Parameters

    • locale: string

      The locale to use for formatting.

    Returns BooleanFormatter

    The boolean formatter function.

    const formatter = booleanFormatter('fr');
    console.log(formatter(true)); // 'oui'
    console.log(formatter(false)); // 'non'

    If the locale is not found, the function returns a formatter that uses English 'yes' and 'no' as the strings.