Missing semi-colons added
This commit is contained in:
parent
866d8c1876
commit
0ce4d192fa
14
src/fs.js
14
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
|
||||
|
|
Loading…
Reference in New Issue