UNPKG

mirador

Version:

An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.

12 lines (9 loc) 162 B
/** */ export default function asArray(value) { if (value === undefined) return []; if (!Array.isArray(value)) { return [value]; } return value; }