mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
6 lines
223 B
TypeScript
6 lines
223 B
TypeScript
|
export default function toList<T>(candidate: T | T[], skipEmpty = false): T[] {
|
||
|
if (skipEmpty && (candidate === undefined || candidate === null)) return [];
|
||
|
|
||
|
return Array.isArray(candidate) ? candidate : [candidate];
|
||
|
}
|