AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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