function signOutWithGoogle()

in app/static/signInOutWithGoogle.js [42:49]


function signOutWithGoogle() {
  firebase.auth().signOut().then(function() {
    document.cookie = "firebase_id_token=;";
    window.location.replace('/');
  }).catch(function (error) {
    console.log(error);
  });
}