Skip to main content
Module

x/rambda/source/excludes.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {includes} from './includes'
export function excludes(valueToFind, input) { if (arguments.length === 1) return _input => excludes(valueToFind, _input)
return includes(valueToFind, input) === false}