fxtwitter-docker/src/quote.ts
2022-07-26 01:46:43 -04:00

16 lines
352 B
TypeScript

import { Strings } from './strings';
export const handleQuote = (quote: APITweet): 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;
};