From 202fb937995086561421719b2b26449757e80913 Mon Sep 17 00:00:00 2001 From: Mihai Bazon Date: Thu, 25 Oct 2012 10:58:48 +0300 Subject: [PATCH] test for fs.existsSync --- tools/node.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/node.js b/tools/node.js index de749bb3..4a891380 100644 --- a/tools/node.js +++ b/tools/node.js @@ -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"); -- 2.34.1