Skip to content

Commit

Permalink
Merge pull request #13002 from meteor/fix/underscore-1.6
Browse files Browse the repository at this point in the history
Fix #13001
  • Loading branch information
Grubba27 committed Feb 22, 2024
2 parents feddb54 + 592e185 commit 7c75017
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/underscore/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Package.describe({
summary: "Collection of small helpers: _.map, _.each, ...",
version: '1.6.0',
version: '1.6.1',
});

Npm.depends({
Expand Down
2 changes: 1 addition & 1 deletion packages/underscore/underscore.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@
var rest = slice.call(arguments, 1);
return _.filter(_.uniq(array), function(item) {
return _.every(rest, function(other) {
return _.contains(other, item) >= 0;
return _.contains(other, item);
});
});
};
Expand Down

0 comments on commit 7c75017

Please sign in to comment.