In node.js, is it possible to determine (using a function) whether a method is synchronous or asynchronous?
I\'d like to write a function that does the following:
No, that's impossible. The methods aren't just marked synchronous or asynchronous, they either use callbacks or they don't.