UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

6 lines (4 loc) 115 B
import {mapFn} from './map.js' export function filterMap(fn) { return list => mapFn(fn, list).filter(Boolean) }