projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b920e00e853e2a9eb5110f829b1b981b68bb7b7f
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function () {
2
3
/**
4
* Returns a function that call a method on the passed object
5
*/
6
function func(name){
7
return function(obj){
8
return obj[name]();
9
};
10
}
11
12
return func;
13
14
});