Open
Description
it("should use 'any' to test if any items passes condition" , function () {
var onlyEven = [2,4,6];
var mixedBag = [2,4,5,6];
var isEven = function(x) { return x % 2 === 0 };
expect(_(onlyEven).any(isEven)).toBe(true);
expect(_(mixedBag).any(isEven)).toBe(true);
});
in lines 60-68 of AboutHigherOrderFunctions.js should be updated to use "some" instead of "any"
it looks like "any" has been deprecated?