aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.js
blob: 0527262419e2a1ef04584dc656fa6ae2ee08aba5 (plain) (tree)
1
2
3
4
5


                        

         












                                                                              
'use strict'

const miscValidators = {
  exists,
  isArray
}

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

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

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

module.exports = miscValidators