mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
20 lines
388 B
TypeScript
20 lines
388 B
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;
|
|
});
|
|
};
|
|
|
|
export const Strings = {};
|