Skip to content

Commit 7207a93

Browse files
committedNov 13, 2013
Cleanup whitespace
1 parent ead8749 commit 7207a93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎opal/core/array.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1424,18 +1424,18 @@ def uniq
14241424
%x{
14251425
var result = [],
14261426
seen = {};
1427-
1427+
14281428
for (var i = 0, length = self.length, item, hash; i < length; i++) {
14291429
item = self[i];
14301430
hash = item;
1431-
1431+
14321432
if (!seen[hash]) {
14331433
seen[hash] = true;
1434-
1434+
14351435
result.push(item);
14361436
}
14371437
}
1438-
1438+
14391439
return result;
14401440
}
14411441
end

0 commit comments

Comments
 (0)
Please sign in to comment.