Skip to content

toText

File 对象转换为文本字符串。

使用

ts
import { toText } from 'rattail'

await toText(new File(['Hello, world!'], 'hello.txt', { type: 'text/plain' }))
// return 'Hello, world!'

参数

参数类型默认值
fileFile

返回值

类型
Promise<string>