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

8 lines
187 B
JavaScript
Executable file

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