DEV Community

Discussion on: I did it again.

Collapse
 
joelnet profile image
JavaScript Joel • Edited

Ramda has a function called complement that can help you build these functions.

import complement from 'ramda/src/complement'

const isEven = num => num % 2 === 0
const isNotEven = complement(isEven)