From d1bfc564f5080412c602118565e272710bda10e5 Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 11 Jul 2020 17:03:25 +0100 Subject: [PATCH] added a getuid function --- public/js/script.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/js/script.js b/public/js/script.js index 0063af1ab..399da191d 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -218,6 +218,12 @@ function verifyUsername() { }); } +function getuid() { + console.error("Only share this uid with Miodec and nobody else!"); + console.log(firebase.auth().currentUser.uid); + console.error("Only share this uid with Miodec and nobody else!"); +} + function getLastChar(word) { return word.charAt(word.length - 1); }