mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Delete extra format function
This commit is contained in:
parent
d1db155935
commit
41f770e09a
1 changed files with 0 additions and 19 deletions
|
@ -2,25 +2,6 @@ import { Router } from 'itty-router';
|
|||
import { Constants } from './constants';
|
||||
import { handleStatus } from './status';
|
||||
|
||||
/*
|
||||
Useful little function to format strings for us
|
||||
*/
|
||||
|
||||
declare global {
|
||||
interface String {
|
||||
format(options: any): string;
|
||||
}
|
||||
}
|
||||
|
||||
String.prototype.format = function (options: any) {
|
||||
return this.replace(/{([^{}]+)}/g, (match: string, name: string) => {
|
||||
if (options[name] !== undefined) {
|
||||
return options[name];
|
||||
}
|
||||
return match;
|
||||
});
|
||||
};
|
||||
|
||||
const router = Router();
|
||||
|
||||
const statusRequest = async (request: any, event: FetchEvent) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue