Skip to content

Commit

Permalink
Fixed france postal code validation with new tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mash3al-29 committed Oct 24, 2024
1 parent 77f81ec commit 1feec56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/isPostalCode.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const patterns = {
EE: fiveDigit,
ES: /^(5[0-2]{1}|[0-4]{1}\d{1})\d{3}$/,
FI: fiveDigit,
FR: /^\d{2}\s?\d{3}$/,
FR: /^(?:(?:0[1-9]|[1-8]\d|9[0-5])\d{3}|97[1-46]\d{2})$/,
GB: /^(gir\s?0aa|[a-z]{1,2}\d[\da-z]?\s?(\d[a-z]{2})?)$/i,
GR: /^\d{3}\s?\d{2}$/,
HR: /^([1-5]\d{4}$)/,
Expand Down

0 comments on commit 1feec56

Please sign in to comment.