module.exports = get
function get (obj, key) {
for (var i in obj) if (i.toLowerCase() === key.toLowerCase()) return obj[i]
return undefined
}