You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Revert introduction of safevalues to prevent issues from arising in Browser CommonJS environments due to ES5 incompatibility. For more information, see [GitHub PR #8395](https://github.com/firebase/firebase-js-sdk/pull/8395)
Copy file name to clipboardExpand all lines: docs-devsite/auth.githubauthprovider.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ export declare class GithubAuthProvider extends BaseOAuthProvider
38
38
39
39
| Method | Modifiers | Description |
40
40
| --- | --- | --- |
41
-
| [credential(accessToken)](./auth.githubauthprovider.md#githubauthprovidercredential) | <code>static</code> | Creates a credential for Github. |
41
+
| [credential(accessToken)](./auth.githubauthprovider.md#githubauthprovidercredential) | <code>static</code> | Creates a credential for GitHub. |
42
42
| [credentialFromError(error)](./auth.githubauthprovider.md#githubauthprovidercredentialfromerror) | <code>static</code> | Used to extract the underlying [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) from a [AuthError](./auth.autherror.md#autherror_interface) which was thrown during a sign-in, link, or reauthenticate operation. |
43
43
| [credentialFromResult(userCredential)](./auth.githubauthprovider.md#githubauthprovidercredentialfromresult) | <code>static</code> | Used to extract the underlying [OAuthCredential](./auth.oauthcredential.md#oauthcredential_class) from a [UserCredential](./auth.usercredential.md#usercredential_interface)<!-- -->. |
Copy file name to clipboardExpand all lines: docs-devsite/database.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Firebase Realtime Database
17
17
| Function | Description |
18
18
| --- | --- |
19
19
| <b>function(app, ...)</b> |
20
-
|[getDatabase(app, url)](./database.md#getdatabase_d9cea01)| Returns the instance of the Realtime Database SDK that is associated with the provided [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface)<!---->. Initializes a new instance with with default settings if no instance exists or if the existing instance uses a custom database URL. |
20
+
|[getDatabase(app, url)](./database.md#getdatabase_d9cea01)| Returns the instance of the Realtime Database SDK that is associated with the provided [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface)<!---->. Initializes a new instance with default settings if no instance exists or if the existing instance uses a custom database URL. |
21
21
| <b>function(db, ...)</b> |
22
22
|[connectDatabaseEmulator(db, host, port, options)](./database.md#connectdatabaseemulator_27b9e93)| Modify the provided instance to communicate with the Realtime Database emulator.<p>Note: This method must be called before performing any other operation. |
23
23
|[goOffline(db)](./database.md#gooffline_732b338)| Disconnects from the server (all Database operations will be completed offline).<!---->The client automatically maintains a persistent connection to the Database server, which will remain active indefinitely and reconnect when disconnected. However, the <code>goOffline()</code> and <code>goOnline()</code> methods may be used to control the client connection in cases where a persistent connection is undesirable.<!---->While offline, the client will no longer receive data updates from the Database. However, all Database operations performed locally will continue to immediately fire events, allowing your application to continue behaving normally. Additionally, each operation performed locally will automatically be queued and retried upon reconnection to the Database server.<!---->To reconnect to the Database and begin receiving remote events, see <code>goOnline()</code>. |
@@ -112,7 +112,7 @@ Firebase Realtime Database
112
112
113
113
### getDatabase(app, url) {:#getdatabase_d9cea01}
114
114
115
-
Returns the instance of the Realtime Database SDK that is associated with the provided [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface)<!---->. Initializes a new instance with with default settings if no instance exists or if the existing instance uses a custom database URL.
115
+
Returns the instance of the Realtime Database SDK that is associated with the provided [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface)<!---->. Initializes a new instance with default settings if no instance exists or if the existing instance uses a custom database URL.
0 commit comments