You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
237 B
7 lines
237 B
2 years ago
|
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);
|
||
|
}
|