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.

10 lines (7 loc) 241 B
import assertString from './util/assertString'; // see http://isrc.ifpi.org/en/isrc-standard/code-syntax const isrc = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/; export default function isISRC(str) { assertString(str); return isrc.test(str); }