UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

9 lines (6 loc) 191 B
import assertString from './util/assertString'; const isBICReg = /^[A-z]{4}[A-z]{2}\w{2}(\w{3})?$/; export default function isBIC(str) { assertString(str); return isBICReg.test(str); }