11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
|
|
function ccn_localstorageAssist_Get(index, defaultValue) {
|
||
|
|
var cache = localStorage.getItem(index);
|
||
|
|
if (cache == null) {
|
||
|
|
ccn_localstorageAssist_Set(index, defaultValue);
|
||
|
|
return defaultValue;
|
||
|
|
} else return cache;
|
||
|
|
}
|
||
|
|
|
||
|
|
function ccn_localstorageAssist_Set(index, value) {
|
||
|
|
localStorage.setItem(index, value);
|
||
|
|
}
|