We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You are giving an example for readFile
sync(fs,"readFile")
I tried to Synchronize functions which i am declaring in the main module.
sync("combo")//does nothing sync(global,"combo")//global does not contain a function combo sync(main,"combo")//main does not con....
how should i do that? thanks
The text was updated successfully, but these errors were encountered:
You can use that case like this...
var _ = {}; _.combo = combo; sync(_, 'combo'); // maybe you need reassign // combo = _.combo;
But, many case, I use this method instead wrap method.
combo(sync.defer()); sync.await();
Sorry, something went wrong.
that second way is very good, because of the )))))'s at the end of a wrapped sync.await\defer
No branches or pull requests
You are giving an example for readFile
I tried to Synchronize functions which i am declaring in the main module.
how should i do that?
thanks
The text was updated successfully, but these errors were encountered: