ship-gis/node_modules/underscore/modules/negate.js

7 lines
176 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
// Returns a negated version of the passed-in predicate.
export default function negate(predicate) {
return function() {
return !predicate.apply(this, arguments);
};
}