From e49cedcef513040dfecc62330abe1b91477b2ee6 Mon Sep 17 00:00:00 2001 From: ai <105955582+aithedev@users.noreply.github.com> Date: Mon, 27 Feb 2023 18:32:46 -0500 Subject: [PATCH] Update example.js --- example.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/example.js b/example.js index 4da5c00..e455796 100644 --- a/example.js +++ b/example.js @@ -4,14 +4,7 @@ const { sign } = require("./X-Bogus.js"); const url = ""; const userAgent = ""; -// Extract the query string from the URL const query = url.includes("?") ? url.split("?")[1] : ""; - -// Generate the X-Bogus value const xbogus = sign(query, userAgent); - -// Add the X-Bogus value to the URL const newUrl = url + "&X-Bogus=" + xbogus; - -// Output the new URL to the console console.log(newUrl);