]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/core-utils/common/number.ts
Implement remote runner jobs in server
[github/Chocobozzz/PeerTube.git] / shared / core-utils / common / number.ts
1 export function forceNumber (value: any) {
2 return parseInt(value + '')
3 }
4
5 export function isOdd (num: number) {
6 return (num % 2) !== 0
7 }
8
9 export function toEven (num: number) {
10 if (isOdd(num)) return num + 1
11
12 return num
13 }