From 487020ee6007bc638dcd21a65ccf8c2feab1e66b Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 8 Oct 2018 16:22:48 -0400 Subject: [PATCH] doc: add WebAssembly to globals PR-URL: https://github.com/nodejs/node/pull/23339 Reviewed-By: Rich Trott Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Trivikram Kamat Reviewed-By: Vse Mozhet Byt Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen --- doc/api/globals.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/api/globals.md b/doc/api/globals.md index 82412a899e7c1f..e4965a43afad89 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -215,6 +215,19 @@ added: v10.0.0 The WHATWG `URLSearchParams` class. See the [`URLSearchParams`][] section. +## WebAssembly + + + + +* {Object} + +The object that acts as the namespace for all W3C +[WebAssembly][webassembly-org] related functionality. See the +[Mozilla Developer Network][webassembly-mdn] for usage and compatibility. + [`__dirname`]: modules.html#modules_dirname [`__filename`]: modules.html#modules_filename [`clearImmediate`]: timers.html#timers_clearimmediate_immediate @@ -236,3 +249,5 @@ The WHATWG `URLSearchParams` class. See the [`URLSearchParams`][] section. [built-in objects]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects [module system documentation]: modules.html [timers]: timers.html +[webassembly-mdn]: https://developer.mozilla.org/en-US/docs/WebAssembly +[webassembly-org]: https://webassembly.org