UNPKG

http2-express-bridge

Version:
19 lines (14 loc) 293 B
const isStringArray = arr => { if (Array.isArray(arr)) { arr.forEach(item => { if(typeof item !== 'string'){ return false } }) return true } return false } module.exports = { isStringArray }