Blame view

frontend/web/js/validation/src/additional/postalcodeIT.js 201 Bytes
18b850c7   Administrator   Importers CRUD
1
2
3
4
  /* Matches Italian postcode (CAP) */
  $.validator.addMethod("postalcodeIT", function(value, element) {
  	return this.optional(element) || /^\d{5}$/.test(value);
  }, "Please specify a valid postal code");