UNPKG

press-next

Version:

Vue3 组件库,支持 Composition API

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; }