Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bun.file()
BunFile
Blob
.type
const file = Bun.file("./package.json"); file.type; // application/json;charset=utf-8 const file = Bun.file("./index.html"); file.type; // text/html;charset=utf-8 const file = Bun.file("./image.png"); file.type; // image/png