/** * 判断值是否为数组 * @return 是否为数组 */ export default function isArray(value: unknown): value is Array { return Array.isArray(value); }