fix: opsec blunder

Signed-off-by: István  <156918376+xXxMLGGamerXxx@users.noreply.github.com>
This commit is contained in:
István 2024-01-24 15:47:04 +01:00 committed by GitHub
parent 91d09c41c8
commit 5c3c7c884d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,14 @@
export default function age() { function e(input) {
return Math.floor( return btoa(input);
(new Date().getTime() - new Date('2004-07-22').getTime()) / }
(1000 * 60 * 60 * 24 * 365.25)
) function d(input) {
return atob(input); //
}
export default function age() {
const ed = 'Smw3Z2FhNi0yMjBi';
const de = d(ed);
const age = Math.floor((new Date().getTime() - new Date(de).getTime()) / (1000 * 60 * 60 * 24 * 365.25));
return age;
} }