ionic-team / ionic-team/ionic-storage
switched args in storage.forEach documentation
Open
- Dominant language
- TypeScript
- Stars
- 456
- Forks
- 97
- PR merge metrics
- No merged PRs in 30d
Description
From the documentation, "To enumerate the stored key/value pairs" should be :
```
storage.forEach((key, value, index) => {
});
```
but when I use it, the valid syntaxe is :
```
storage.forEach((value, key, index) => {
});
```
Contributor guide
Assessment
This issue has not been assessed yet.