You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
304 B
11 lines
304 B
import assertString from './util/assertString';
|
|
var localeReg = /^[A-z]{2,4}([_-]([A-z]{4}|[\d]{3}))?([_-]([A-z]{2}|[\d]{3}))?$/;
|
|
export default function isLocale(str) {
|
|
assertString(str);
|
|
|
|
if (str === 'en_US_POSIX' || str === 'ca_ES_VALENCIA') {
|
|
return true;
|
|
}
|
|
|
|
return localeReg.test(str);
|
|
} |