From c975c2e3e690ec1d0ff2db201d3d7cc2c9118a14 Mon Sep 17 00:00:00 2001 From: kwkofler Date: Fri, 7 Mar 2014 18:59:30 -0500 Subject: [PATCH] Rebase conflict resolution removed two methods accidentally, replaced them --- src/fs.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/fs.js b/src/fs.js index 2d8fc40..1c19237 100644 --- a/src/fs.js +++ b/src/fs.js @@ -151,6 +151,14 @@ define(function(require) { return this.type === MODE_SYMBOLIC_LINK; }; + Stats.prototype.isFIFO = function() { + return false; + }; + + Stats.prototype.isSocket = function() { + return false; + }; + /* * Update node times. Only passed times are modified (undefined times are ignored) * and filesystem flags are examined in order to override update logic.