Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify readonly as the default indexeddb transaction mode (#6122)
* Specify readonly as the default indexeddb transaction mode While the mode parameter is optional, the wrapper method will pass `undefined` into the native method if it is not passed into the wrapper. IE11 interprets this as a mode instead of ignoring it and throws an InvalidAccessError. Specifying `readonly` as the default (which is the default if the parameter is omitted) prevents IE11 from crashing during initialization. * Bump patch version for @firebase/util
- Loading branch information