validator.js-asserts
Version:
A set of extra asserts for validator.js.
44 lines (31 loc) • 691 B
JavaScript
/**
* Module dependencies.
*/
const { Validator, Violation } = require('validator.js');
/**
* Bic regex.
*/
const bic = /^[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}$/i;
/**
* Export `BankIdentifierCodeAssert`.
*/
module.exports = function bankIdentifierCodeAssert() {
/**
* Class name.
*/
this.__class__ = 'BankIdentifierCode';
/**
* Validation algorithm.
*/
this.validate = value => {
if (typeof value !== 'string') {
throw new Violation(this, value, { value: Validator.errorCode.must_be_a_string });
}
if (!bic.test(value)) {
throw new Violation(this, value);
}
return true;
};
return this;
};
;