Skip to content

Commit

Permalink
Cleanup whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 13, 2013
1 parent ead8749 commit 7207a93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions opal/core/array.rb
Expand Up @@ -1424,18 +1424,18 @@ def uniq
%x{
var result = [],
seen = {};
for (var i = 0, length = self.length, item, hash; i < length; i++) {
item = self[i];
hash = item;
if (!seen[hash]) {
seen[hash] = true;
result.push(item);
}
}
return result;
}
end
Expand Down

0 comments on commit 7207a93

Please sign in to comment.