Files
GNX-mailEnterprise/frontend/node_modules/underscore/amd/negate.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

13 lines
218 B
JavaScript

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