forked from bevacqua/local-storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal-storage.js
70 lines (58 loc) · 1.45 KB
/
local-storage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
'use strict';
var stub = require('./stub');
var tracking = require('./tracking');
// from https://github.com/munkacsimark/local-data-storage/blob/236f1fbb9ef5f794f22361d3c2eff9c7ea5bddec/dist/validator.js#L4
const isLocalStorageAvailable = () => {
const storage = global.localStorage;
try {
const testItem = "__storage_test__";
storage.setItem(testItem, testItem);
storage.removeItem(testItem);
return true;
}
catch (e) {
return (e instanceof DOMException &&
(e.code === 22 ||
e.code === 1014 ||
e.name === "QuotaExceededError" ||
e.name === "NS_ERROR_DOM_QUOTA_REACHED") &&
storage &&
storage.length !== 0);
}
};
var ls = isLocalStorageAvailable() ? global.localStorage : stub;
function accessor (key, value) {
if (arguments.length === 1) {
return get(key);
}
return set(key, value);
}
function get (key) {
return JSON.parse(ls.getItem(key));
}
function set (key, value) {
try {
ls.setItem(key, JSON.stringify(value));
return true;
} catch (e) {
return false;
}
}
function remove (key) {
return ls.removeItem(key);
}
function clear () {
return ls.clear();
}
function backend (store) {
store && (ls = store);
return ls;
}
accessor.set = set;
accessor.get = get;
accessor.remove = remove;
accessor.clear = clear;
accessor.backend = backend;
accessor.on = tracking.on;
accessor.off = tracking.off;
module.exports = accessor;