UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

8 lines (6 loc) 140 B
import { find } from './find.js' export function exists(predicate) { return list => { return find(predicate)(list) !== undefined } }