UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

9 lines (7 loc) 146 B
import { excludes } from './excludes.js' export function union(listA) { return listB => [ ...listA, ...listB.filter(excludes(listA)), ] }