diff options
author | 2023-10-11 01:47:35 +0200 | |
---|---|---|
committer | 2023-10-10 16:47:35 -0700 | |
commit | a6a474a83f64feff77273af18de526ce9e020808 (patch) | |
tree | 6c4a9c3d6d008a55ba4b6da756a405754056f97c | |
parent | 44dd744f0a062012a40eb38326a40f3e3566cb5a (diff) | |
download | bun-a6a474a83f64feff77273af18de526ce9e020808.tar.gz bun-a6a474a83f64feff77273af18de526ce9e020808.tar.zst bun-a6a474a83f64feff77273af18de526ce9e020808.zip |
Add File to binary data TOC (#6025)
-rw-r--r-- | docs/api/binary-data.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/api/binary-data.md b/docs/api/binary-data.md index a5fa40d9e..91b314b98 100644 --- a/docs/api/binary-data.md +++ b/docs/api/binary-data.md @@ -26,10 +26,10 @@ Below is a quick "cheat sheet" that doubles as a table of contents. Click an ite --- -<!-- - [`File`](#file) -- _Browser only_. A subclass of `Blob` that represents a file. Has a `name` and `lastModified` timestamp. There is experimental support in Node.js v20; Bun does not support `File` yet; most of its functionality is provided by `BunFile`. +- [`File`](#file) +- A subclass of `Blob` that represents a file. Has a `name` and `lastModified` timestamp. There is experimental support in Node.js v20. ---- --> +--- - [`BunFile`](#bunfile) - _Bun only_. A subclass of `Blob` that represents a lazily-loaded file on disk. Created with `Bun.file(path)`. |