The zip code ranges for every state, listed in the states-with-zipcodes.ts file, are incomplete. For instance, Ohio's zip codes range from 43001-45999 but the range listed in this package is only 44101-44179. Additionally, Illinois range is from 60001-62999 but the range listed in this package is 60601-60641 and 62701-62709
{
name: 'Ohio',
abbreviation: 'OH',
territory: false,
capital: 'Columbus',
contiguous: true,
zipCodes: [['44101', '44179']]
},
{
name: 'Illinois',
abbreviation: 'IL',
territory: false,
capital: 'Springfield',
contiguous: true,
zipCodes: [
['60601', '60641'],
['62701', '62709']
]
},
The zip code ranges for every state, listed in the states-with-zipcodes.ts file, are incomplete. For instance, Ohio's zip codes range from 43001-45999 but the range listed in this package is only 44101-44179. Additionally, Illinois range is from 60001-62999 but the range listed in this package is 60601-60641 and 62701-62709
{
name: 'Ohio',
abbreviation: 'OH',
territory: false,
capital: 'Columbus',
contiguous: true,
zipCodes: [['44101', '44179']]
},
{
name: 'Illinois',
abbreviation: 'IL',
territory: false,
capital: 'Springfield',
contiguous: true,
zipCodes: [
['60601', '60641'],
['62701', '62709']
]
},