UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

9 lines 352 B
export function toArray(value) { if (Array.isArray(value)) { return value; } return value !== undefined ? [value] : []; } export const isClient = typeof window !== 'undefined' && window.document && window.document.documentElement; /** Is client side and not jsdom */ export const isBrowserClient = process.env.NODE_ENV !== 'test' && isClient;