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
require('async' and require('tutorial') may interfere with other modules in user's config or other path.
require('async'
require('tutorial')
It's best to use namespace (directory) for them - require('lua-async-await.async'), require('lua-async-await.tutorial')
require('lua-async-await.async')
require('lua-async-await.tutorial')
The text was updated successfully, but these errors were encountered:
thats fine, this is just a tutorial :D
Sorry, something went wrong.
This also applies to the lib code - require('async')
require('async')
ah i see what you mean, like to make the lib code obey the name spacing rules.
i guess that can be done, i don't have the bandwidth for that right now though
No branches or pull requests
require('async'
andrequire('tutorial')
may interfere with other modules in user's config or other path.It's best to use namespace (directory) for them -
require('lua-async-await.async')
,require('lua-async-await.tutorial')
The text was updated successfully, but these errors were encountered: