mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import { exists } from './misc.js'
|
|
|
|
function isVideoTimeValid (value: number, videoDuration?: number) {
|
|
if (value < 0) return false
|
|
if (exists(videoDuration) && value > videoDuration) return false
|
|
|
|
return true
|
|
}
|
|
|
|
export {
|
|
isVideoTimeValid
|
|
}
|