Skip to content

Instantly share code, notes, and snippets.

View JamesMaroney's full-sized avatar

James Maroney JamesMaroney

View GitHub Profile
function getConfigVal(key, defaultValue){
if(localStorage.getItem('fixtureMode') !== true) return defaultValue;
var localStorageValue = localStorage.getItem(key);
return localStorageValue === null ? defaultValue : localStorageValue;
}