Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2021-01-06 02:39:54 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2021-01-25 05:43:34 +0300
commit775b34b822bff1009d7e4d2c7de4a75132aaf621 (patch)
tree4fa3e041e6c1834760f16f22d295d8798751b0b4 /tools
parentfada6b0087abae7acfb34fbe30bb609ec702b6a6 (diff)
buffer: introduce Blob
The `Blob` object is an immutable data buffer. This is a first step towards alignment with the `Blob` Web API. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/36811 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/doc/type-parser.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/doc/type-parser.js b/tools/doc/type-parser.js
index 624ff0974d9..5a91b1556c5 100644
--- a/tools/doc/type-parser.js
+++ b/tools/doc/type-parser.js
@@ -40,6 +40,8 @@ const customTypesMap = {
'WebAssembly.Instance':
`${jsDocPrefix}Reference/Global_Objects/WebAssembly/Instance`,
+ 'Blob': 'buffer.html#buffer_class_blob',
+
'BroadcastChannel':
'worker_threads.html#worker_threads_class_broadcastchannel_' +
'extends_eventtarget',