* Signs out the current user.
()
| 146 | * Signs out the current user. |
| 147 | */ |
| 148 | function signOutCurrentUser() { |
| 149 | signOut(auth) |
| 150 | .then(function () { |
| 151 | alertMessage('User signed out!'); |
| 152 | }) |
| 153 | .catch(displayError); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Sends an email verification to the current user. |
nothing calls this directly
no test coverage detected