]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/misc.ts
Type models
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / misc.ts
CommitLineData
e4c55619
C
1function exists (value) {
2 return value !== undefined && value !== null
3}
4
5function isArray (value) {
6 return Array.isArray(value)
7}
8
9// ---------------------------------------------------------------------------
10
65fcc311
C
11export {
12 exists,
13 isArray
14}