UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

7 lines (5 loc) 176 B
import { filter } from './filter.js' import { includes } from './includes.js' export function intersection(listA) { return listB => filter(x => includes(x)(listA))(listB) }