fossasia/loklak_webclient

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

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    getMeta: function(oembed) {
        if (oembed.type != "photo") {
            return {
                canonical: oembed.url
            };
        }
    }
};