| 123456789101112131415161718192021222324 |
- (function($) {
- $.fn.bootstrapValidator.validators.siren = {
- /**
- * Check if a string is a siren number
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consist of key:
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- if (!/^\d{9}$/.test(value)) {
- return false;
- }
- return $.fn.bootstrapValidator.helpers.luhn(value);
- }
- };
- }(window.jQuery));
|