返回 DeepSeek-Reasonix
array.ts
根目录 / desktop / frontend / src / lib / array.ts
1 export function asArray<T>(value: T[] | null | undefined): T[] {
2 return Array.isArray(value) ? value : [];
3 }
4
4 lines TYPESCRIPT