File size: 258 Bytes
d9494a5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { type CountryCode, getCountries } from 'libphonenumber-js';

const ALL_COUNTRIES_CODE_SET = new Set<string>(getCountries());

export const isValidCountryCode = (input: string): input is CountryCode => {
  return ALL_COUNTRIES_CODE_SET.has(input);
};