@@ -1405,6 +1405,19 @@ event loop **before** additional I/O is processed. As a result,
1405
1405
recursively setting nextTick callbacks will block any I/O from
1406
1406
happening, just like a ` while(true); ` loop.
1407
1407
1408
+ ## process.noDeprecation
1409
+ <!-- YAML
1410
+ added: v0.8.0
1411
+ -->
1412
+
1413
+ * {boolean}
1414
+
1415
+ The ` process.noDeprecation ` property indicates whether the ` --no-deprecation `
1416
+ flag is set on the current Node.js process. See the documentation for
1417
+ the [ ` warning ` event] [ process_warning ] and the
1418
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1419
+ flag's behavior.
1420
+
1408
1421
## process.pid
1409
1422
<!-- YAML
1410
1423
added: v0.1.15
@@ -1778,6 +1791,19 @@ false
1778
1791
1779
1792
See the [ TTY] [ ] documentation for more information.
1780
1793
1794
+ ## process.throwDeprecation
1795
+ <!-- YAML
1796
+ added: v0.9.12
1797
+ -->
1798
+
1799
+ * {boolean}
1800
+
1801
+ The ` process.throwDeprecation ` property indicates whether the
1802
+ ` --throw-deprecation ` flag is set on the current Node.js process. See the
1803
+ documentation for the [ ` warning ` event] [ process_warning ] and the
1804
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1805
+ flag's behavior.
1806
+
1781
1807
## process.title
1782
1808
<!-- YAML
1783
1809
added: v0.1.104
@@ -1798,6 +1824,19 @@ process. Node.js v0.8 allowed for longer process title strings by also
1798
1824
overwriting the ` environ ` memory but that was potentially insecure and
1799
1825
confusing in some (rather obscure) cases.
1800
1826
1827
+ ## process.traceDeprecation
1828
+ <!-- YAML
1829
+ added: v0.8.0
1830
+ -->
1831
+
1832
+ * {boolean}
1833
+
1834
+ The ` process.traceDeprecation ` property indicates whether the
1835
+ ` --trace-deprecation ` flag is set on the current Node.js process. See the
1836
+ documentation for the [ ` warning ` event] [ process_warning ] and the
1837
+ [ ` emitWarning ` method] [ process_emit_warning ] for more information about this
1838
+ flag's behavior.
1839
+
1801
1840
## process.umask([ mask] )
1802
1841
<!-- YAML
1803
1842
added: v0.1.19
0 commit comments