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