node/deps/npm/lib/utils/get.js
Ryan Dahl b488be127a Include NPM, update .pkg to install it.
.msi update coming soon.
2011-11-21 10:50:52 -08:00

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
}