UNPKG

@extra-array/reject

Version:

Discards values which pass a test.

10 lines (9 loc) 176 B
'use strict'; function reject(x, ft) { var a = [], i = -1; for (var v of x) if (!ft(v, ++i, x)) a.push(v); return a; } module.exports = reject;