UNPKG

ant-design-vue

Version:

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

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