blob: 275c10a95663879acbcf391a1b0a5262d70d36ba (
plain)
1
2
3
4
5
6
7
|
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);
}
|