Skip to content

Commit 8f9362d

Browse files
maclover7MylesBorins
authored andcommitted
doc: add documentation for deprecation properties
PR-URL: #16539 Fixes: #16394 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 1505b71 commit 8f9362d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

doc/api/process.md

+39
Original file line numberDiff line numberDiff line change
@@ -1300,6 +1300,19 @@ event loop **before** additional I/O is processed. As a result,
13001300
recursively setting nextTick callbacks will block any I/O from
13011301
happening, just like a `while(true);` loop.
13021302

1303+
## process.noDeprecation
1304+
<!-- YAML
1305+
added: v0.8.0
1306+
-->
1307+
1308+
* {boolean}
1309+
1310+
The `process.noDeprecation` property indicates whether the `--no-deprecation`
1311+
flag is set on the current Node.js process. See the documentation for
1312+
the [`warning` event][process_warning] and the
1313+
[`emitWarning` method][process_emit_warning] for more information about this
1314+
flag's behavior.
1315+
13031316
## process.pid
13041317
<!-- YAML
13051318
added: v0.1.15
@@ -1648,6 +1661,19 @@ false
16481661

16491662
See the [TTY][] documentation for more information.
16501663

1664+
## process.throwDeprecation
1665+
<!-- YAML
1666+
added: v0.9.12
1667+
-->
1668+
1669+
* {boolean}
1670+
1671+
The `process.throwDeprecation` property indicates whether the
1672+
`--throw-deprecation` flag is set on the current Node.js process. See the
1673+
documentation for the [`warning` event][process_warning] and the
1674+
[`emitWarning` method][process_emit_warning] for more information about this
1675+
flag's behavior.
1676+
16511677
## process.title
16521678
<!-- YAML
16531679
added: v0.1.104
@@ -1668,6 +1694,19 @@ Node.js v0.8 allowed for longer process title strings by also overwriting the
16681694
`environ` memory but that was potentially insecure and confusing in some
16691695
(rather obscure) cases.
16701696

1697+
## process.traceDeprecation
1698+
<!-- YAML
1699+
added: v0.8.0
1700+
-->
1701+
1702+
* {boolean}
1703+
1704+
The `process.traceDeprecation` property indicates whether the
1705+
`--trace-deprecation` flag is set on the current Node.js process. See the
1706+
documentation for the [`warning` event][process_warning] and the
1707+
[`emitWarning` method][process_emit_warning] for more information about this
1708+
flag's behavior.
1709+
16711710
## process.umask([mask])
16721711
<!-- YAML
16731712
added: v0.1.19

0 commit comments

Comments
 (0)