简体中文
Appearance
将 File 对象转换为 Data URL 字符串。
File
import { toDataURL } from 'rattail' await toDataURL(new File(['Hello, world!'], 'hello.txt', { type: 'text/plain' })) // return 'data:text/plain;base64,SGVsbG8sIHdvcmxkIQ=='
file
Promise<string>