_.negate(predicate)
Creates a function that negates the result of the predicate func
. The func
predicate is invoked with the this
binding and arguments of the created function.
Since
3.0.0
Arguments
predicate
(Function): The predicate to negate.
Returns
(Function): Returns the new negated function.
Example
function isEven(n) {return n % 2 == 0;}_.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));// => [1, 3, 5]
当前内容版权归 lodash.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 lodash.com .