mirror of https://github.com/nodejs/node.git
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
|
||
|
module.exports = get
|
||
|
function get (obj, key) {
|
||
|
for (var i in obj) if (i.toLowerCase() === key.toLowerCase()) return obj[i]
|
||
|
return undefined
|
||
|
}
|