function hasValue()

in edge-origin-request/app.js [6:10]


function hasValue(mappings){
    if(typeof mappings === 'undefined') return false;
    if(mappings === null) return false;
    return true;
}