Appearance
We can use a localStorage proxy with _spy.storage. uss_ prefix will be added to each key using _spy.storage.
_spy.storage
uss_
We can set and get the values.
_spy.storage.some = "data"; _spy.storage.some // data
We can delete the key.
_spy.storage.delete("some");