UNPKG

133 BTypeScriptView Raw
1/**
2 * 判断值是否为数组
3 * @return 是否为数组
4 */
5export default function isArray(value: unknown): value is Array<any>;