JWT Autorization / Logging in and registering
This commit is contained in:
6
node_modules/validator/es/lib/isBIC.js
generated
vendored
Normal file
6
node_modules/validator/es/lib/isBIC.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import assertString from './util/assertString';
|
||||
var isBICReg = /^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/;
|
||||
export default function isBIC(str) {
|
||||
assertString(str);
|
||||
return isBICReg.test(str);
|
||||
}
|
||||
Reference in New Issue
Block a user