Returns a boolean formatter function for the specified locale. The formatter function converts boolean values to localized strings.
The locale to use for formatting.
The boolean formatter function.
const formatter = booleanFormatter('fr');console.log(formatter(true)); // 'oui'console.log(formatter(false)); // 'non' Copy
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.
Returns a boolean formatter function for the specified locale. The formatter function converts boolean values to localized strings.