"use strict"; module.exports = function mapMaybeArray(value, handler) { if (Array.isArray(value)) { return value.map(handler); } else { return handler(value); } };