burningElement
Results
1
comments of
burningElement
```javascript class LocalStorageFake { constructor() { this.storage = {}; } getItem(key) { return this.storage[key]; } setItem(key, value) { this.storage[key] = value; } removeItem(key) { delete this.storage[key]; } clear() { this.storage...