I would like to get a list of all the objects of the first array that are not in the second one (so _.difference() doesn't work in this case). Something like this:
_.without([0, 3, 5, 6, 7], [4, 6, 7]); // I would like this to return [0, 3, 5]
Is this possible?