teableio/teable

View on GitHub
packages/ui-lib/src/base/file/preview/pdf/utils.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { getBlobFromUrl } from '../office/utils';

export const getBlobUrlFromUrl = async (url: string) => {
  const blob = await getBlobFromUrl(url);
  return URL.createObjectURL(blob);
};