swc/bundler/tests/.cache/deno/f8c2a47022ff45cc5caa70c4e2f3a11b1bdda24e.ts

17 lines
391 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isISRC.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
// see http://isrc.ifpi.org/en/isrc-standard/code-syntax
/**
* @ignore
*/
const isrc = /^[A-Z]{2}[0-9A-Z]{3}\d{2}\d{5}$/;
export const isISRC = (str: string) => {
assertString(str);
return isrc.test(str);
};