👷♂️ Patch fixes
- Fixes bug where calling
Storage.getItem()
with a key that has the same name as one of its methods or properties, returned the method/property (e.g.Storage.getItem('key')
returnedStorage.key()
which is a function) - By @capricorn86 in task #1351- The solution has been changed to use a
Proxy
instead to safeguard against this
- The solution has been changed to use a