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.

18 lines (14 loc) 257 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = asArray; /** */ function asArray(value) { if (value === undefined) return []; if (!Array.isArray(value)) { return [value]; } return value; }