mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
17 lines
391 B
TypeScript
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);
|
|
};
|