negate_.negate(predicate)
Returns a new negated version of the predicate function.
var isFalsy = _.negate(Boolean); _.find([-2, -1, 0, 1, 2], isFalsy); => 0
negate_.negate(predicate)
Returns a new negated version of the predicate function.
var isFalsy = _.negate(Boolean); _.find([-2, -1, 0, 1, 2], isFalsy); => 0
Please login to continue.