added a getuid function

This commit is contained in:
Jack 2020-07-11 17:03:25 +01:00
parent 48e412a31f
commit d1bfc564f5

View file

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