Files
core/hwe/ts/utilGame/tournament.ts
T
Hide_D 6f5d7ff84b feat: Vue3로 새롭게 작성한 메인 페이지 (#229)
- v_front.php
- API 추가
  - General/GetFrontInfo
  - Global/GetGlobalMenu
- DTO 추가
  - MenuItem, MenuMulti, MenuSplit
- 글로벌 메뉴 출력 방식 변경
  - d_setting/GlobalMenu.php

Reviewed-on: https://storage.hided.net/gitea/devsam/core/pulls/229
2023-03-09 02:25:31 +09:00

4 lines
132 B
TypeScript

import { clamp } from 'lodash-es';
export function calcTournamentTerm(turnTerm: number): number{
return clamp(turnTerm, 5, 120);
}