UNPKG

press-plus

Version:
12 lines (11 loc) 250 B
export function checkOneTeamEmpty({ teamAId, teamBId }: { teamAId?: string; teamBId?: string; }) { const isAtLeastOneTeamEmpty = (!teamAId || !teamBId || teamAId === '999' || teamBId === '999' ); return isAtLeastOneTeamEmpty; }