Skip to content

Commit 6525220

Browse files
authored
Support Safari 9. (#701)
Replaces usage of `const` with `var` in the ESM export.
1 parent 7844a2e commit 6525220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const CJS_DEPS = [
7878
const ESM_IMPORT = ESM_DEPS.join(';') + ';';
7979

8080
// Export firebaseui.auth module.
81-
const ESM_EXPORT = 'const auth = firebaseui.auth;' +
81+
const ESM_EXPORT = 'var auth = firebaseui.auth;' +
8282
'export { auth } ;';
8383

8484
// Adds the cjs module requirement and exports firebaseui.

0 commit comments

Comments
 (0)