2016-07-31 14:58:43 -04:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const miscValidators = {
|
2016-10-02 06:19:02 -04:00
|
|
|
exists,
|
|
|
|
isArray
|
2016-07-31 14:58:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function exists (value) {
|
|
|
|
return value !== undefined && value !== null
|
|
|
|
}
|
|
|
|
|
|
|
|
function isArray (value) {
|
|
|
|
return Array.isArray(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = miscValidators
|