Skip to content

Commit fe9fe0f

Browse files
committed
Triple equals
1 parent ff0e2af commit fe9fe0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/util/src/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const getDefaultsFromGlobal = (): FirebaseDefaults | undefined =>
5757
* process.env.__FIREBASE_DEFAULTS_PATH__
5858
*/
5959
const getDefaultsFromEnvVariable = (): FirebaseDefaults | undefined => {
60-
if (typeof process == 'undefined' || typeof process.env === 'undefined') {
60+
if (typeof process === 'undefined' || typeof process.env === 'undefined') {
6161
return;
6262
}
6363
const defaultsJsonString = process.env.__FIREBASE_DEFAULTS__;

0 commit comments

Comments
 (0)