From 0ce4d192fa19d2980d8162d228a02519c7276668 Mon Sep 17 00:00:00 2001 From: kwkofler Date: Thu, 20 Feb 2014 21:00:57 -0500 Subject: [PATCH] Missing semi-colons added --- src/fs.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/fs.js b/src/fs.js index a88fb4d..c950f36 100644 --- a/src/fs.js +++ b/src/fs.js @@ -130,31 +130,31 @@ define(function(require) { Stats.prototype.isFile = function() { return this.type === constants.MODE_FILE; - } + }; Stats.prototype.isDirectory = function() { return this.type === constants.MODE_DIRECTORY; - } + }; Stats.prototype.isBlockDevice = function() { return false; - } + }; Stats.prototype.isCharacterDevice = function() { return false; - } + }; Stats.prototype.isSymbolicLink = function() { return this.type === constants.MODE_SYMBOLIC_LINK; - } + }; Stats.prototype.isFIFO = function() { return false; - } + }; Stats.prototype.isSocket = function() { return false; - } + }; /* * find_node