Checks whether all resolved locales in the input belong to the English language family ('en-*').
Optional
Single or multiple locale identifiers
True if at least one valid locale exists and all resolved locales are English
isEnglish('en-US'); // trueisEnglish(['en-US', 'en-GB']); // trueisEnglish(['en-US', 'fr-FR']); // false Copy
isEnglish('en-US'); // trueisEnglish(['en-US', 'en-GB']); // trueisEnglish(['en-US', 'fr-FR']); // false
Checks whether all resolved locales in the input belong to the English language family ('en-*').