File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ Resumes the readline `input` stream.
77
77
### rl.setPrompt(prompt)
78
78
79
79
Sets the prompt, for example when you run ` node ` on the command line, you see
80
- ` > ` , which is node .js's prompt.
80
+ ` > ` , which is Node .js's prompt.
81
81
82
82
### rl.write(data[ , key] )
83
83
Original file line number Diff line number Diff line change 5
5
These functions are in the module ` 'util' ` . Use ` require('util') ` to
6
6
access them.
7
7
8
- The ` util ` module is primarily designed to support the needs of node .js's
8
+ The ` util ` module is primarily designed to support the needs of Node .js's
9
9
internal APIs. Many of these utilities are useful for your own
10
10
programs. If you find that these functions are lacking for your
11
11
purposes, however, you are encouraged to write your own utilities. We
12
12
are not interested in any future additions to the ` util ` module that
13
- are unnecessary for node .js's internal functionality.
13
+ are unnecessary for Node .js's internal functionality.
14
14
15
15
## util.debug(string)
16
16
@@ -260,7 +260,7 @@ Returns `true` if the given "object" is a `Boolean`. `false` otherwise.
260
260
// false
261
261
util.isBoolean(false)
262
262
// true
263
-
263
+
264
264
## util.isBuffer(object)
265
265
266
266
Stability: 0 - Deprecated
Original file line number Diff line number Diff line change 3
3
Stability: 2 - Stable
4
4
5
5
This module exposes events and interfaces specific to the version of [ V8] [ ]
6
- built with node .js. These interfaces are subject to change by upstream and are
6
+ built with Node .js. These interfaces are subject to change by upstream and are
7
7
therefore not covered under the stability index.
8
8
9
9
## getHeapStatistics()
@@ -27,7 +27,7 @@ Set additional V8 command line flags. Use with care; changing settings
27
27
after the VM has started may result in unpredictable behavior, including
28
28
crashes and data loss. Or it may simply do nothing.
29
29
30
- The V8 options available for a version of node .js may be determined by running
30
+ The V8 options available for a version of Node .js may be determined by running
31
31
` node --v8-options ` . An unofficial, community-maintained list of options
32
32
and their effects is available [ here] [ ] .
33
33
You can’t perform that action at this time.
0 commit comments