fxtwitter-docker/src/strings.ts
2022-07-15 01:39:20 -04:00

38 lines
1.6 KiB
TypeScript

declare global {
interface String {
format(options: any): string;
}
}
/*
Useful little function to format strings for us
*/
String.prototype.format = function (options: any) {
return this.replace(/{([^{}]+)}/g, (match: string, name: string) => {
if (options[name] !== undefined) {
return options[name];
}
return match;
});
};
/* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */
export const Strings = {
TWITTER: 'Twitter',
BASE_HTML: `<!DOCTYPE html>
<html {lang}>
<!-- ███████████ ▐█▌ ███ ███
███ █ ███ ███
███ ███ ███
█████▌ ███ ███ ███ ███ ███ ███ ███ ██████ ██████ ▐████▌ ███▐███
███ ██▌ ▐█▌▐█▌ ███ ███ ███ ███ ███ ███ ███ ▐█▌ ▐█▌ ███▌
███ ███ ▐██▌ ███ ███ ███ ███ ███ ███ ███ ████████ ███
███ ▐██▌ ▐█▌▐█▌ ███ ▐██▌ ███ ▐██▌ ███ ▐██▌ ▐██▌ ▐█▌ ███
█████▌ ███ ███ ███ ▐█████████▌ ███ ▐████ ▐███ ▐████ ███
███
███ A better Tweet embedding service
███ by @dangeredwolf, et al.
-->
<head>{headers}</head>`
};