UNPKG
press-next
Version:
latest (1.2.39)
match (1.3.0-beta.2)
1.3.0-beta.57
1.3.0-beta.39
1.3.0-beta.37
1.3.0-beta.35
1.3.0-beta.32
1.3.0-beta.29
1.3.0-beta.28
1.3.0-beta.25
1.3.0-beta.11
1.3.0-beta.6
1.3.0-beta.5
1.3.0-beta.3
1.3.0-beta.2
1.2.39
1.2.31
1.2.18
1.2.16
1.2.15
1.2.14
1.2.13
1.2.12
1.2.11
1.2.10
1.2.5
1.1.3
1.0.71
1.0.63
1.0.62
1.0.61
1.0.60
1.0.59
1.0.47
1.0.27
1.0.11
1.0.1
1.0.0
1.0.0-beta.167
1.0.0-beta.165
1.0.0-beta.164
1.0.0-beta.163
1.0.0-beta.162
1.0.0-beta.161
1.0.0-beta.160
1.0.0-beta.153
1.0.0-beta.144
0.0.1
Vue3 组件库,支持 Composition API
press-next
/
press-schedule-card-gp
/
parser-tree
/
is-one-team-empty.ts
12 lines
(11 loc)
•
250 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
function
checkOneTeamEmpty
(
{ teamAId, teamBId }: { teamAId?:
string
; teamBId?:
string
; }
) {
const
isAtLeastOneTeamEmpty = (!teamAId || !teamBId || teamAId ===
'999'
|| teamBId ===
'999'
);
return
isAtLeastOneTeamEmpty; }