Files
jwl-applet/src/uni_modules/lime-shared/isBase64/index.ts

9 lines
292 B
TypeScript
Raw Normal View History

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