swc/bundler/tests/.cache/deno/f8c2a47022ff45cc5caa70c4e2f3a11b1bdda24e.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

17 lines
391 B
TypeScript

// 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);
};