UNPKG
press-plus
Version:
latest (1.9.64)
1.9.64
1.9.17
1.9.13
1.9.9
1.8.18
1.8.17
1.8.10
1.8.8
1.7.145
1.7.144
1.7.139
1.5.20
1.5.15
1.3.52
0.0.1
易用的跨端组件库
novlan1.github.io/press-plus
novlan1/press-plus
press-plus
/
press-schedule-tree
/
parser
/
judge-sche-version.ts
14 lines
(12 loc)
•
248 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * 判断赛程版本,老赛程为-1,新赛程为0 *
@param
{
*
}
gameInfo
*
@returns
*/
export
function
judgeScheVersion
(
gameInfo: any
) {
const
groupType = gameInfo?.
group_type
;
if
(groupType >=
7
) {
return
0
; }
return
-
1
; }