FLUJOS/VISUALIZACION/node_modules/underscore/modules/negate.js
2025-11-07 00:06:12 +01:00

6 lines
176 B
JavaScript
Executable file

// Returns a negated version of the passed-in predicate.
export default function negate(predicate) {
return function() {
return !predicate.apply(this, arguments);
};
}