Browse Source

Revert "Add process.startTime"

Unnecessary

This reverts commit 896cef23c4.
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
1bf46d1536
  1. 3
      doc/api.txt
  2. 1
      src/node.js

3
doc/api.txt

@ -112,9 +112,6 @@ The PID of the process.
+process.platform+ ::
What platform you're running on. +"linux2"+, +"darwin"+, etc.
+process.startTime+ ::
When the process started.
+process.memoryUsage()+ ::
Returns the memory usage of the Node process. It looks like this
+

1
src/node.js

@ -1,5 +1,4 @@
(function (process) {
process.startTime = new Date();
process.global.process = process;
process.global.global = process.global;

Loading…
Cancel
Save