portainer/app/react/edge/edge-stacks/ItemView/EditEdgeStackForm/atLeastTwo.ts

4 lines
110 B
TypeScript

export function atLeastTwo(a: boolean, b: boolean, c: boolean) {
return (a && b) || (a && c) || (b && c);
}