test for fs.existsSync
authorMihai Bazon <mihai@bazon.net>
Thu, 25 Oct 2012 07:58:48 +0000 (10:58 +0300)
committerMihai Bazon <mihai@bazon.net>
Thu, 25 Oct 2012 07:58:48 +0000 (10:58 +0300)
tools/node.js

index de749bb..4a89138 100644 (file)
@@ -9,7 +9,9 @@ var fs = require("fs");
 // but by the time you can set that the `path` module is already
 // loaded and `path.existsSync` is already changed to display that
 // warning, therefore here's the poor solution:
-path.existsSync = fs.existsSync;
+if (fs.existsSync) {
+    path.existsSync = fs.existsSync;
+}
 
 var vm = require("vm");
 var sys = require("util");