| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 1 17 53 1 | define(function () {
/**
* Returns a function that gets a property of the passed object
* @version 0.1.0 (2012/06/04)
*/
function prop(name){
return function(obj){
return obj[name];
};
}
return prop;
});
|