export default function isArray(input: ArrayItem[] | unknown): input is ArrayItem[] { return Array.isArray(input); }