ship-gis/node_modules/underscore/amd/reject.js

11 lines
264 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
define(['./_cb', './filter', './negate'], function (_cb, filter, negate) {
// Return all the elements for which a truth test fails.
function reject(obj, predicate, context) {
return filter(obj, negate(_cb(predicate)), context);
}
return reject;
});