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
Hi,
I now get the output to: wrong arguments when requiring wd. This seems to be related to the string package, which makes sense, since it was added 2 days ago to wd.
to: wrong arguments
The text was updated successfully, but these errors were encountered:
Are you using shelljs?
If so, the issue is there, it is logging the error before it even had a chance to be caught. (string.js catches it and ignore it, which is correct.)
You can turn it off like this, then back on later.
var shell = require('shelljs'); shell.config.silent = true; require('wd'); ... shell.config.silent = false;
Let me know if you still have issue, It can look for alternatives.
Sorry, something went wrong.
0.2.4 uses underscore.string instead,
underscore.string
No branches or pull requests
Hi,
I now get the output
to: wrong arguments
when requiring wd. This seems to be related to the string package, which makes sense, since it was added 2 days ago to wd.The text was updated successfully, but these errors were encountered: