@@ -1342,6 +1342,19 @@ event loop **before** additional I/O is processed. As a result,
1342
1342
recursively setting nextTick callbacks will block any I/O from
1343
1343
happening, just like a ` while(true); ` loop.
1344
1344
1345
+ ## process.noDeprecation
1346
+ <!-- YAML
1347
+ added: v0.8.0
1348
+ -->
1349
+
1350
+ * {boolean}
1351
+
1352
+ The ` process.noDeprecation ` property indicates whether the ` --no-deprecation `
1353
+ flag is set on the current Node.js process. See the documentation for
1354
+ the [ ` warning ` event] [ process_warning ] and the
1355
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1356
+ flag's behavior.
1357
+
1345
1358
## process.pid
1346
1359
<!-- YAML
1347
1360
added: v0.1.15
@@ -1692,6 +1705,19 @@ false
1692
1705
1693
1706
See the [ TTY] [ ] documentation for more information.
1694
1707
1708
+ ## process.throwDeprecation
1709
+ <!-- YAML
1710
+ added: v0.9.12
1711
+ -->
1712
+
1713
+ * {boolean}
1714
+
1715
+ The ` process.throwDeprecation ` property indicates whether the
1716
+ ` --throw-deprecation ` flag is set on the current Node.js process. See the
1717
+ documentation for the [ ` warning ` event] [ process_warning ] and the
1718
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1719
+ flag's behavior.
1720
+
1695
1721
## process.title
1696
1722
<!-- YAML
1697
1723
added: v0.1.104
@@ -1712,6 +1738,19 @@ process. Node.js v0.8 allowed for longer process title strings by also
1712
1738
overwriting the ` environ ` memory but that was potentially insecure and
1713
1739
confusing in some (rather obscure) cases.
1714
1740
1741
+ ## process.traceDeprecation
1742
+ <!-- YAML
1743
+ added: v0.8.0
1744
+ -->
1745
+
1746
+ * {boolean}
1747
+
1748
+ The ` process.traceDeprecation ` property indicates whether the
1749
+ ` --trace-deprecation ` flag is set on the current Node.js process. See the
1750
+ documentation for the [ ` warning ` event] [ process_warning ] and the
1751
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1752
+ flag's behavior.
1753
+
1715
1754
## process.umask([ mask] )
1716
1755
<!-- YAML
1717
1756
added: v0.1.19
0 commit comments