Skip to content

Instantly share code, notes, and snippets.

@BerkanSezer
Created January 30, 2024 12:00
Show Gist options
  • Save BerkanSezer/81d4a8c91ad96acf90d5d381fd52bdb3 to your computer and use it in GitHub Desktop.
Save BerkanSezer/81d4a8c91ad96acf90d5d381fd52bdb3 to your computer and use it in GitHub Desktop.
const parameters = {type: "save", id: 1112};
const log = btoa(
encodeURIComponent(JSON.stringify(parameters))
.replace(/%([0-9A-F]{2})/g, function toSolidBytes (match, p1) {
return String.fromCharCode('0x' + p1);
}),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment