index.ts 292 B

123456789
  1. // @ts-nocheck
  2. /**
  3. * 判断给定的路径是否为Base64编码的图像路径
  4. * @param path 图像路径
  5. * @returns 如果路径是Base64编码,则返回true;否则返回false
  6. */
  7. export const isBase64 = (path: string): boolean => {
  8. return /^data:image\/(\w+);base64/.test(path);
  9. };