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

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


function AndPredicate(left, right) {
    this.left = left;
    this.right = right;
    return this;
}

AndPredicate.prototype.matches = function(stored) {
    return this.left.matches(stored) && this.right.matches(stored);
};

exports.AndPredicate = AndPredicate;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy