Skip to content

Commit

Permalink
code style consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
edi9999 committed Mar 4, 2015
1 parent 3a45c45 commit ba9ac21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nodefs-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function setFsWatchFileListener(path, fullPath, options, handlers) {
rawEmitter('change', fullPath, {curr: curr, prev: prev});
});
var currmtime = curr.mtime.getTime();
if (curr.size != prev.size || currmtime > prev.mtime.getTime() || currmtime === 0) {
if (curr.size !== prev.size || currmtime > prev.mtime.getTime() || currmtime === 0) {
container.listeners.forEach(function(listener) {
listener(path, curr);
});
Expand Down

0 comments on commit ba9ac21

Please sign in to comment.