Delete extra format function

This commit is contained in:
dangered wolf 2022-07-14 20:39:40 -04:00
parent d1db155935
commit 41f770e09a
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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) => {