All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.prompto.memstore.NotPredicate.js Maven / Gradle / Ivy


function NotPredicate(pred) {
    this.pred = pred;
    return this;
}

NotPredicate.prototype.matches = function(stored) {
    return !this.pred.matches(stored);
};

exports.NotPredicate = NotPredicate;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy