mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:23:43 +00:00
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
|
|
}
|