Skip to main content
Module

x/rambda/source/complement.js

Faster and smaller alternative to Ramda
Latest
File
export function complement(fn){ return (...input) => !fn(...input)}