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



                        
                  












                                                                              
'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