UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

7 lines (6 loc) 150 B
export function toArray(value) { if (value === undefined || value === null) { return []; } return Array.isArray(value) ? value : [value]; }