| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,7 +17,7 @@ The objects listed here are specific to Node.js. There are [built-in objects][] | |||
| 17 | 17 | that are part of the JavaScript language itself, which are also globally | |
| 18 | 18 | accessible. | |
| 19 | 19 | ||
| 20 | - ## Class: Buffer | ||
| 20 | + ## Class: `Buffer` | ||
| 21 | 21 | <!-- YAML | |
| 22 | 22 | added: v0.1.103 | |
| 23 | 23 | --> | |
@@ -28,15 +28,15 @@ added: v0.1.103 | |||
| 28 | 28 | ||
| 29 | 29 | Used to handle binary data. See the [buffer section][]. | |
| 30 | 30 | ||
| 31 | - ## \_\_dirname | ||
| 31 | + ## `__dirname` | ||
| 32 | 32 | ||
| 33 | 33 | This variable may appear to be global but is not. See [`__dirname`][]. | |
| 34 | 34 | ||
| 35 | - ## \_\_filename | ||
| 35 | + ## `__filename` | ||
| 36 | 36 | ||
| 37 | 37 | This variable may appear to be global but is not. See [`__filename`][]. | |
| 38 | 38 | ||
| 39 | - ## clearImmediate(immediateObject) | ||
| 39 | + ## `clearImmediate(immediateObject)` | ||
| 40 | 40 | <!-- YAML | |
| 41 | 41 | added: v0.9.1 | |
| 42 | 42 | --> | |
@@ -45,7 +45,7 @@ added: v0.9.1 | |||
| 45 | 45 | ||
| 46 | 46 | [`clearImmediate`][] is described in the [timers][] section. | |
| 47 | 47 | ||
| 48 | - ## clearInterval(intervalObject) | ||
| 48 | + ## `clearInterval(intervalObject)` | ||
| 49 | 49 | <!-- YAML | |
| 50 | 50 | added: v0.0.1 | |
| 51 | 51 | --> | |
@@ -54,7 +54,7 @@ added: v0.0.1 | |||
| 54 | 54 | ||
| 55 | 55 | [`clearInterval`][] is described in the [timers][] section. | |
| 56 | 56 | ||
| 57 | - ## clearTimeout(timeoutObject) | ||
| 57 | + ## `clearTimeout(timeoutObject)` | ||
| 58 | 58 | <!-- YAML | |
| 59 | 59 | added: v0.0.1 | |
| 60 | 60 | --> | |
@@ -63,7 +63,7 @@ added: v0.0.1 | |||
| 63 | 63 | ||
| 64 | 64 | [`clearTimeout`][] is described in the [timers][] section. | |
| 65 | 65 | ||
| 66 | - ## console | ||
| 66 | + ## `console` | ||
| 67 | 67 | <!-- YAML | |
| 68 | 68 | added: v0.1.100 | |
| 69 | 69 | --> | |
@@ -74,11 +74,11 @@ added: v0.1.100 | |||
| 74 | 74 | ||
| 75 | 75 | Used to print to stdout and stderr. See the [`console`][] section. | |
| 76 | 76 | ||
| 77 | - ## exports | ||
| 77 | + ## `exports` | ||
| 78 | 78 | ||
| 79 | 79 | This variable may appear to be global but is not. See [`exports`][]. | |
| 80 | 80 | ||
| 81 | - ## global | ||
| 81 | + ## `global` | ||
| 82 | 82 | <!-- YAML | |
| 83 | 83 | added: v0.1.27 | |
| 84 | 84 | --> | |
@@ -92,11 +92,11 @@ within the browser `var something` will define a new global variable. In | |||
| 92 | 92 | Node.js this is different. The top-level scope is not the global scope; | |
| 93 | 93 | `var something` inside a Node.js module will be local to that module. | |
| 94 | 94 | ||
| 95 | - ## module | ||
| 95 | + ## `module` | ||
| 96 | 96 | ||
| 97 | 97 | This variable may appear to be global but is not. See [`module`][]. | |
| 98 | 98 | ||
| 99 | - ## process | ||
| 99 | + ## `process` | ||
| 100 | 100 | <!-- YAML | |
| 101 | 101 | added: v0.1.7 | |
| 102 | 102 | --> | |
@@ -107,7 +107,7 @@ added: v0.1.7 | |||
| 107 | 107 | ||
| 108 | 108 | The process object. See the [`process` object][] section. | |
| 109 | 109 | ||
| 110 | - ## queueMicrotask(callback) | ||
| 110 | + ## `queueMicrotask(callback)` | ||
| 111 | 111 | <!-- YAML | |
| 112 | 112 | added: v11.0.0 | |
| 113 | 113 | --> | |
@@ -146,11 +146,11 @@ DataHandler.prototype.load = async function load(key) { | |||
| 146 | 146 | }; | |
| 147 | 147 | ``` | |
| 148 | 148 | ||
| 149 | - ## require() | ||
| 149 | + ## `require()` | ||
| 150 | 150 | ||
| 151 | 151 | This variable may appear to be global but is not. See [`require()`][]. | |
| 152 | 152 | ||
| 153 | - ## setImmediate(callback\[, ...args\]) | ||
| 153 | + ## `setImmediate(callback[, ...args])` | ||
| 154 | 154 | <!-- YAML | |
| 155 | 155 | added: v0.9.1 | |
| 156 | 156 | --> | |
@@ -159,7 +159,7 @@ added: v0.9.1 | |||
| 159 | 159 | ||
| 160 | 160 | [`setImmediate`][] is described in the [timers][] section. | |
| 161 | 161 | ||
| 162 | - ## setInterval(callback, delay\[, ...args\]) | ||
| 162 | + ## `setInterval(callback, delay[, ...args])` | ||
| 163 | 163 | <!-- YAML | |
| 164 | 164 | added: v0.0.1 | |
| 165 | 165 | --> | |
@@ -168,7 +168,7 @@ added: v0.0.1 | |||
| 168 | 168 | ||
| 169 | 169 | [`setInterval`][] is described in the [timers][] section. | |
| 170 | 170 | ||
| 171 | - ## setTimeout(callback, delay\[, ...args\]) | ||
| 171 | + ## `setTimeout(callback, delay[, ...args])` | ||
| 172 | 172 | <!-- YAML | |
| 173 | 173 | added: v0.0.1 | |
| 174 | 174 | --> | |
@@ -177,7 +177,7 @@ added: v0.0.1 | |||
| 177 | 177 | ||
| 178 | 178 | [`setTimeout`][] is described in the [timers][] section. | |
| 179 | 179 | ||
| 180 | - ## TextDecoder | ||
| 180 | + ## `TextDecoder` | ||
| 181 | 181 | <!-- YAML | |
| 182 | 182 | added: v11.0.0 | |
| 183 | 183 | --> | |
@@ -186,7 +186,7 @@ added: v11.0.0 | |||
| 186 | 186 | ||
| 187 | 187 | The WHATWG `TextDecoder` class. See the [`TextDecoder`][] section. | |
| 188 | 188 | ||
| 189 | - ## TextEncoder | ||
| 189 | + ## `TextEncoder` | ||
| 190 | 190 | <!-- YAML | |
| 191 | 191 | added: v11.0.0 | |
| 192 | 192 | --> | |
@@ -195,7 +195,7 @@ added: v11.0.0 | |||
| 195 | 195 | ||
| 196 | 196 | The WHATWG `TextEncoder` class. See the [`TextEncoder`][] section. | |
| 197 | 197 | ||
| 198 | - ## URL | ||
| 198 | + ## `URL` | ||
| 199 | 199 | <!-- YAML | |
| 200 | 200 | added: v10.0.0 | |
| 201 | 201 | --> | |
@@ -204,7 +204,7 @@ added: v10.0.0 | |||
| 204 | 204 | ||
| 205 | 205 | The WHATWG `URL` class. See the [`URL`][] section. | |
| 206 | 206 | ||
| 207 | - ## URLSearchParams | ||
| 207 | + ## `URLSearchParams` | ||
| 208 | 208 | <!-- YAML | |
| 209 | 209 | added: v10.0.0 | |
| 210 | 210 | --> | |
@@ -213,7 +213,7 @@ added: v10.0.0 | |||
| 213 | 213 | ||
| 214 | 214 | The WHATWG `URLSearchParams` class. See the [`URLSearchParams`][] section. | |
| 215 | 215 | ||
| 216 | - ## WebAssembly | ||
| 216 | + ## `WebAssembly` | ||
| 217 | 217 | <!-- YAML | |
| 218 | 218 | added: v8.0.0 | |
| 219 | 219 | --> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments