EASYAIuniappNewUI/node_modules/licia/negate.js
2025-02-08 18:50:38 +08:00

8 lines
143 B
JavaScript

exports = function(predicate) {
return function() {
return !predicate.apply(this, arguments);
};
};
module.exports = exports;