UNPKG

@gutenye/ocr-browser

Version:

Guten OCR is a high accurate text detection (OCR) Javascript/Typescript library that runs on Node.js, Browser, React Native and C++. Based on PaddleOCR and ONNX runtime

9 lines (7 loc) 202 B
import { FileUtilsBase } from '@gutenye/ocr-common' export class FileUtils extends FileUtilsBase { static async read(url: string) { const res = await fetch(url) return await res.text() } }