Add remote.createFunctionWithReturnValue API.

This commit is contained in:
Cheng Zhao 2013-08-25 17:22:36 +08:00
parent d88676bf65
commit c86acc4cd7
5 changed files with 33 additions and 3 deletions

3
spec/fixtures/module/call.js vendored Normal file
View file

@ -0,0 +1,3 @@
exports.call = function(func) {
return func();
}