1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00
portainer/app/react/edge/edge-stacks/ItemView/EditEdgeStackForm/atLeastTwo.ts

3 lines
110 B
TypeScript

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