@@ -1300,6 +1300,19 @@ event loop **before** additional I/O is processed. As a result,
1300
1300
recursively setting nextTick callbacks will block any I/O from
1301
1301
happening, just like a ` while(true); ` loop.
1302
1302
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
+
1303
1316
## process.pid
1304
1317
<!-- YAML
1305
1318
added: v0.1.15
@@ -1648,6 +1661,19 @@ false
1648
1661
1649
1662
See the [ TTY] [ ] documentation for more information.
1650
1663
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
+
1651
1677
## process.title
1652
1678
<!-- YAML
1653
1679
added: v0.1.104
@@ -1668,6 +1694,19 @@ Node.js v0.8 allowed for longer process title strings by also overwriting the
1668
1694
` environ ` memory but that was potentially insecure and confusing in some
1669
1695
(rather obscure) cases.
1670
1696
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
+
1671
1710
## process.umask([ mask] )
1672
1711
<!-- YAML
1673
1712
added: v0.1.19
0 commit comments