diff options
| author | Matt Mayer <[email protected]> | 2024-10-13 05:44:40 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-12 22:44:40 +0000 |
| commit | e271d4a545dd48e57285019e4f412358c49cad0d (patch) | |
| tree | 7f8a1bb0d065995891a0e90304966bb6ce6032e7 /src | |
| parent | 4056ab09c64be40d41562284ec64e7531fbaff41 (diff) | |
| download | faker-e271d4a545dd48e57285019e4f412358c49cad0d.tar.xz faker-e271d4a545dd48e57285019e4f412358c49cad0d.zip | |
fix(location): update valid ZIP ranges for FL and VA (#3167)
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/en_US/location/postcode_by_state.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locales/en_US/location/postcode_by_state.ts b/src/locales/en_US/location/postcode_by_state.ts index 70b61700..4f8ab247 100644 --- a/src/locales/en_US/location/postcode_by_state.ts +++ b/src/locales/en_US/location/postcode_by_state.ts @@ -8,7 +8,7 @@ export default { CT: '0{{number.int({"min": 6001,"max": 6389})}}', DC: '{{number.int({"min": 20001,"max": 20039})}}', DE: '{{number.int({"min": 19701,"max": 19980})}}', - FL: '{{number.int({"min": 32004,"max": 34997})}}', + FL: '{{helpers.arrayElement(["320","321","322","323","324","325","326","327","328","329","330","331","332","333","334","335","336","337","338","339","341","342","344","346","347","349"])}}{{string.numeric({"length": 2})}}', GA: '{{number.int({"min": 30001,"max": 31999})}}', HI: '{{number.int({"min": 96701,"max": 96898})}}', IA: '{{number.int({"min": 50001,"max": 52809})}}', @@ -45,7 +45,7 @@ export default { TN: '{{number.int({"min": 37010,"max": 38589})}}', TX: '{{number.int({"min": 75503,"max": 79999})}}', UT: '{{number.int({"min": 84001,"max": 84784})}}', - VA: '{{number.int({"min": 20040,"max": 20041})}}', + VA: '{{number.int({"min": 22201,"max": 24599})}}', VT: '0{{number.int({"min": 5001,"max": 5495})}}', WA: '{{number.int({"min": 98001,"max": 99403})}}', WI: '{{number.int({"min": 53001,"max": 54990})}}', |
