UNPKG

iframely

Version:

oEmbed/2 gateway endpoint. Get embed data for various http links through one self-hosted API

21 lines (16 loc) 381 B
export default { getLink: function(meta) { if (!meta.logo) { return; } var link = { href: meta.logo.href || meta.logo, type: meta.logo.type || CONFIG.T.image, rel: CONFIG.R.logo } if (meta.logo.color) { link.color = meta.logo.color; } return link; } };