Skip to main content
Module

x/rambda/source/intersection.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {filter} from './filter'import {includes} from './includes'
export function intersection(listA, listB) { if (arguments.length === 1) return _list => intersection(listA, _list)
return filter(x => includes(x, listA), listB)}