1
0
Fork 0
peertube/server/helpers/custom-validators/search.ts

20 lines
443 B
TypeScript
Raw Normal View History

2018-07-20 08:35:18 -04:00
import * as validator from 'validator'
import 'express-validator'
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')
}
// ---------------------------------------------------------------------------
export {
isNumberArray,
isStringArray
}