fossasia/loklak_webclient

View on GitHub
iframely/plugins/links/logo.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    getLink: function(meta) {

        if (!meta.logo) {
            return;
        }

        return {
            href: meta.logo.href || meta.logo,
            type: meta.logo.type || CONFIG.T.image,
            rel: CONFIG.R.logo
        }
    }
};