fossasia/loklak_webclient

View on GitHub
iframely/plugins/meta/og-date.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    getMeta: function(og) {

        if (og.article) {
            return {
                date: og.article.published_time || og.article.modified_time
            };
        } else if (og.video) {
            return {
                date: og.video.release_date
            };            
        }
    }
};