frontend/.pnpm-store/v3/files/27/e4276e3d0ad92ee934c1c5d7bc5f01b173b5dcdc12f045653e9b3507ee7f2036b99560489423d685568ab17c6075376ad8ef73c1ba1ca059b13d184449cde2

7 lines
237 B
Plaintext

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