fossasia/loklak_webclient

View on GitHub
iframely/plugins/meta/oembed-author.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    highestPriority: true,

    getMeta: function(oembed) {
        return {
            author: oembed.author_name || oembed.author,
            author_url: oembed.author_url
        };
    }
}