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);