aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.js
blob: 0527262419e2a1ef04584dc656fa6ae2ee08aba5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict'

const miscValidators = {
  exists,
  isArray
}

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

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

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

module.exports = miscValidators