aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.ts
blob: 60fcdd5bb4f2c712d402795d75939e3a84cd8a54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import 'express-validator'

function exists (value: any) {
  return value !== undefined && value !== null
}

function isArray (value: any) {
  return Array.isArray(value)
}

// ---------------------------------------------------------------------------

export {
  exists,
  isArray
}