Blame view

frontend/web/js/validation/src/additional/giroaccountNL.js 253 Bytes
18b850c7   Administrator   Importers CRUD
1
2
3
4
5
6
  /**
   * Dutch giro account numbers (not bank numbers) have max 7 digits
   */
  $.validator.addMethod("giroaccountNL", function(value, element) {
  	return this.optional(element) || /^[0-9]{1,7}$/.test(value);
  }, "Please specify a valid giro account number");