commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / bower_components / jquery-validation / src / additional / postalcodeNL.js
1 $.validator.addMethod("postalcodeNL", function(value, element) {
2 return this.optional(element) || /^[1-9][0-9]{3}\s?[a-zA-Z]{2}$/.test(value);
3 }, "Please specify a valid postal code");