UNPKG

218 BJavaScriptView Raw
1
2
3 /**
4 * Returns a function that gets a property of the passed object
5 */
6 function prop(name){
7 return function(obj){
8 return obj[name];
9 };
10 }
11
12 module.exports = prop;
13
14