Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioramos committed Nov 22, 2015
1 parent eb98aff commit 48ac46a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/local-scope/index.js
Expand Up @@ -93,11 +93,11 @@ var postCondenseReach = function (server, options, state) {
return false;
}

var single = types.reduce(function(a, b){
return (a === b) ? a : false;
var single = types.reduce(function (a, b) {
return (a === b) ? a : undefined;
});

return single ? single : undefined;
return single;
};

var isConstructor = function (state, type) {
Expand Down

0 comments on commit 48ac46a

Please sign in to comment.