@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
53 lines • 1.87 kB
JavaScript
;
/*
* Copyright © 2019 Atomist, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.anyPredicateSatisfied = exports.allPredicatesSatisfied = exports.notPredicate = void 0;
const predicateUtils_1 = require("./predicateUtils");
/**
* Return the opposite of this ProjectPredicate
*/
function notPredicate(t) {
return async (pi) => !(await t(pi));
}
exports.notPredicate = notPredicate;
/**
* Wrap all these ProjectPredicates in a single ProjectPredicate
* AND: Return true if all are satisfied
* @param {ProjectPredicate} predicates
* @return {ProjectPredicate}
*/
function allPredicatesSatisfied(...predicates) {
return predicateUtils_1.all(predicates.map(toPredicateMapping)).mapping;
}
exports.allPredicatesSatisfied = allPredicatesSatisfied;
/**
* Wrap all these ProjectPredicates in a single ProjectPredicate
* OR: Return true if any is satisfied
* @param {ProjectPredicate} predicates
* @return {ProjectPredicate}
*/
function anyPredicateSatisfied(...predicates) {
return predicateUtils_1.any(predicates.map(toPredicateMapping)).mapping;
}
exports.anyPredicateSatisfied = anyPredicateSatisfied;
function toPredicateMapping(p, i) {
return {
name: `p_${i}`,
mapping: p,
};
}
//# sourceMappingURL=projectPredicateUtils.js.map