File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ added: REPLACEME
678
678
- ` curve ` {string}
679
679
- ` inputEncoding ` {string}
680
680
- ` outputEncoding ` {string}
681
- - ` format ` {string} ** Default:** ` uncompressed `
681
+ - ` format ` {string} ** Default:** ` ' uncompressed' `
682
682
- Returns: {Buffer | string}
683
683
684
684
Converts the EC Diffie-Hellman public key specified by ` key ` and ` curve ` to the
@@ -757,7 +757,7 @@ its recommended for developers to handle this exception accordingly.
757
757
added: v0.11.14
758
758
-->
759
759
- ` encoding ` {string}
760
- - ` format ` {string} ** Default:** ` uncompressed `
760
+ - ` format ` {string} ** Default:** ` ' uncompressed' `
761
761
- Returns: {Buffer | string}
762
762
763
763
Generates private and public EC Diffie-Hellman key values, and returns
@@ -786,7 +786,7 @@ added: v0.11.14
786
786
added: v0.11.14
787
787
-->
788
788
- ` encoding ` {string}
789
- - ` format ` {string} ** Default:** ` uncompressed `
789
+ - ` format ` {string} ** Default:** ` ' uncompressed' `
790
790
- Returns: {Buffer | string} The EC Diffie-Hellman public key in the specified
791
791
` encoding ` and ` format ` .
792
792
Original file line number Diff line number Diff line change @@ -1823,9 +1823,9 @@ changes:
1823
1823
-->
1824
1824
1825
1825
* ` options ` {Object | string | URL}
1826
- * ` protocol ` {string} Protocol to use. ** Default:** ` http: ` .
1826
+ * ` protocol ` {string} Protocol to use. ** Default:** ` ' http:' ` .
1827
1827
* ` host ` {string} A domain name or IP address of the server to issue the
1828
- request to. ** Default:** ` localhost ` .
1828
+ request to. ** Default:** ` ' localhost' ` .
1829
1829
* ` hostname ` {string} Alias for ` host ` . To support [ ` url.parse() ` ] [ ] ,
1830
1830
` hostname ` is preferred over ` host ` .
1831
1831
* ` family ` {number} IP address family to use when resolving ` host ` and
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ changes:
160
160
-->
161
161
- ` options ` {Object | string | URL} Accepts all ` options ` from
162
162
[ ` http.request() ` ] [ ] , with some differences in default values:
163
- - ` protocol ` ** Default:** ` https: `
163
+ - ` protocol ` ** Default:** ` ' https:' `
164
164
- ` port ` ** Default:** ` 443 `
165
165
- ` agent ` ** Default:** ` https.globalAgent `
166
166
- ` callback ` {Function}
Original file line number Diff line number Diff line change @@ -700,7 +700,7 @@ added: v8.0.0
700
700
* ` warning ` {string|Error} The warning to emit.
701
701
* ` options ` {Object}
702
702
* ` type ` {string} When ` warning ` is a String, ` type ` is the name to use
703
- for the * type* of warning being emitted. ** Default:** ` Warning ` .
703
+ for the * type* of warning being emitted. ** Default:** ` ' Warning' ` .
704
704
* ` code ` {string} A unique identifier for the warning instance being emitted.
705
705
* ` ctor ` {Function} When ` warning ` is a String, ` ctor ` is an optional
706
706
function used to limit the generated stack trace. ** Default:**
@@ -745,7 +745,7 @@ added: v6.0.0
745
745
746
746
* ` warning ` {string|Error} The warning to emit.
747
747
* ` type ` {string} When ` warning ` is a String, ` type ` is the name to use
748
- for the * type* of warning being emitted. ** Default:** ` Warning ` .
748
+ for the * type* of warning being emitted. ** Default:** ` ' Warning' ` .
749
749
* ` code ` {string} A unique identifier for the warning instance being emitted.
750
750
* ` ctor ` {Function} When ` warning ` is a String, ` ctor ` is an optional
751
751
function used to limit the generated stack trace. ** Default:**
Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ changes:
430
430
-->
431
431
432
432
* ` options ` {Object|string}
433
- * ` prompt ` {string} The input prompt to display. ** Default:** ` > ` .
433
+ * ` prompt ` {string} The input prompt to display. ** Default:** ` '> ' `
434
434
(with a trailing space).
435
435
* ` input ` {stream.Readable} The Readable stream from which REPL input will be
436
436
read. ** Default:** ` process.stdin ` .
@@ -513,8 +513,8 @@ environment variables:
513
513
- ` NODE_REPL_HISTORY_SIZE ` - Controls how many lines of history will be
514
514
persisted if history is available. Must be a positive number.
515
515
** Default:** ` 1000 ` .
516
- - ` NODE_REPL_MODE ` - May be either ` sloppy ` or ` strict ` . ** Default:** ` sloppy ` ,
517
- which will allow non-strict mode code to be run.
516
+ - ` NODE_REPL_MODE ` - May be either ` ' sloppy' ` or ` ' strict' ` . ** Default:**
517
+ ` 'sloppy' ` , which will allow non-strict mode code to be run.
518
518
519
519
### Persistent History
520
520
You can’t perform that action at this time.
0 commit comments