mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-08 04:56:32 +00:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
define(['./filter', './negate', './_cb'], function (filter, negate, _cb) {
|
|
|
|
// Return all the elements for which a truth test fails.
|
|
function reject(obj, predicate, context) {
|
|
return filter(obj, negate(_cb(predicate)), context);
|
|
}
|
|
|
|
return reject;
|
|
|
|
});
|