swc/bundler/tests/.cache/deno/449b00f05e5d4a8f442f39854ae8759b91fc91f7.ts

16 lines
313 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isMD5.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
const md5 = /^[a-f0-9]{32}$/;
export const isMD5 = (str: string) => {
assertString(str);
return md5.test(str);
};