UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

6 lines (5 loc) 226 B
import isArrayWithValues from './isArrayWithValues'; import isSet from '../../is/isSet'; export default function areArrayItemsSet(array) { return isArrayWithValues(array) && array.every((arrayItem) => isSet(arrayItem)); }