aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.js
blob: 782ae3dee5f6e5af572370e6c8a6d0596a3cd1b0 (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: exists,
  isArray: isArray
}

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

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

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

module.exports = miscValidators