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