aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/custom-validators/misc.ts
blob: f6bb02c8e9fc03865456b76395e00b3b15259033 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                              


                                              
                               




                                                                              



         
 



                                    

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

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

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

export {
  exists,
  isArray
}

declare module 'express-validator' {
  export interface Validator {
    exists,
    isArray
  }
}