船员公众号
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.

9 lines
292 B

5 months ago
// @ts-nocheck
/**
* Base64编码的图像路径
* @param path
* @returns Base64编码truefalse
*/
export const isBase64 = (path: string): boolean => {
return /^data:image\/(\w+);base64/.test(path);
};