Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Fix diff
Browse files Browse the repository at this point in the history
  • Loading branch information
Soaku committed Sep 15, 2018
1 parent 3c17502 commit 8a44870
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/pepe.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ Array.prototype.diff = function(a, r) {
// remove non-repetative
// else:
// remove repetative
for (var k in this) {
var k = this.length;
while (k--) {
var i = this[k];
if (typeof i == "function") continue;

Expand Down

0 comments on commit 8a44870

Please sign in to comment.