From 41f770e09a3fb0a53b78deeca7a5106ac4bc323f Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 14 Jul 2022 20:39:40 -0400 Subject: [PATCH] Delete extra format function --- src/server.ts | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/server.ts b/src/server.ts index a489281..3b2a5f6 100644 --- a/src/server.ts +++ b/src/server.ts @@ -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) => {