sepia-search-motore-di-rice.../server/helpers/custom-validators/search-videos.ts

22 lines
507 B
TypeScript
Raw Normal View History

2020-02-14 16:14:45 +01:00
import { isArray } from './misc'
function isNumberArray (value: any) {
return isArray(value) && value.every(v => validator.isInt('' + v))
}
function isStringArray (value: any) {
return isArray(value) && value.every(v => typeof v === 'string')
}
function isNSFWQueryValid (value: any) {
return value === 'true' || value === 'false' || value === 'both'
}
// ---------------------------------------------------------------------------
export {
isNumberArray,
isStringArray,
isNSFWQueryValid
}