projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c9df78ca02c63b31bed36538c88428673a57aa07
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function () {
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
return prop;
13
14
});