"use strict"; module.exports = function isMXC(value) { if (value.homeserver == null || value.id == null) { throw new Error("Must be an MXC object"); } };