Skip to content

Instantly share code, notes, and snippets.

View emanb29's full-sized avatar

Ethan Bell emanb29

View GitHub Profile
@emanb29
emanb29 / json_storage.js
Last active September 1, 2020 23:14 — forked from danott/json_storage.js
Getters and setters for localStorage allowing it to transparently store objects using es6's Proxy
/* json_storage.js
* @danott
* 26 APR 2011
*
* Building on a thread from Stack Overflow, override localStorage and sessionStorage's
* getter and setter functions to allow for storing objects and arrays.
*
* Original thread:
* http://stackoverflow.com/questions/2010892/storing-objects-in-html5-localstorage
*