fxtwitter-docker/src/helpers/quote.ts
2023-11-21 00:57:47 -05:00

17 lines
384 B
TypeScript

import { Strings } from '../strings';
/* Helper for Quote Tweets */
export const handleQuote = (quote: APIStatus): string | null => {
console.log('Quoting status ', quote.id);
let str = `\n`;
str += Strings.QUOTE_TEXT.format({
name: quote.author?.name || '',
screen_name: quote.author?.screen_name || ''
});
str += ` \n\n`;
str += quote.text;
return str;
};