mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
17 lines
384 B
TypeScript
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;
|
|
};
|