'use strict'; function self(host, post) { console.log(post); return { album: null, items: [{ id: post.id, url: post.url, title: post.title, text: post.text, datetime: post.datetime, type: 'text/plain', self: true, original: post, }] }; } module.exports = self;