Change localStorage to sessionStorage

This commit is contained in:
Oswaldo Acauan 2016-06-13 14:00:57 -03:00
parent 76b8aca4bb
commit 5474591552

View File

@ -1,4 +1,4 @@
const STORAGE = localStorage;
const STORAGE = sessionStorage;
const PREFIX = 'BBB_';
const get = (key) => STORAGE.getItem(`${PREFIX}${key}`);