2019-03-01 05:21:18 +00:00
|
|
|
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
2013-10-10 18:03:07 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation. No representations are made about the suitability of this
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
* implied warranty.
|
|
|
|
*/
|
|
|
|
|
2019-03-01 05:21:18 +00:00
|
|
|
export default function Prefs()
|
2013-10-10 18:03:07 +00:00
|
|
|
{
|
2019-04-01 03:52:45 +00:00
|
|
|
var havePrefs = typeof window.localStorage !== 'undefined';
|
|
|
|
|
2013-10-10 18:03:07 +00:00
|
|
|
return {
|
|
|
|
havePrefs: function() {
|
2019-04-01 03:52:45 +00:00
|
|
|
return havePrefs;
|
2013-10-10 18:03:07 +00:00
|
|
|
},
|
|
|
|
readPref: function(name) {
|
2019-04-01 03:52:45 +00:00
|
|
|
if (havePrefs)
|
|
|
|
return window.localStorage.getItem(name);
|
2013-10-10 18:03:07 +00:00
|
|
|
return null;
|
|
|
|
},
|
|
|
|
writePref: function(name, value) {
|
2019-04-01 03:52:45 +00:00
|
|
|
if (havePrefs)
|
|
|
|
window.localStorage.setItem(name, value);
|
2013-10-10 18:03:07 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|