UNPKG

areacode-to-zipcode

Version:

Translate area codes to zip codes. A utility for looking up postal codes in the US.

10 lines (8 loc) 306 B
declare function getZipcodeFromAreaCode(areaCode: number): string | null; declare function getDataFromAreaCode(areaCode: number): { city: string | null; state: string | null; zipCode: string | null; country: string | null; } | null; export { getDataFromAreaCode, getZipcodeFromAreaCode };