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,
When executing this first command in the Learn IDE: learn test
learn test
This error came up:
/home/melwyn-122593/code/labs/javascript-intro-to-functions-lab-bootcamp-prep-000/node_modules/hoek/lib/index.js:148 exports.applyToDefaults = function (defaults, options, isNullOverride) row[3] + ' (' + row[0] + ':' + row[1] + ':' + r ow[2] + ')'); ^^^ SyntaxError: Unexpected identifier
To get rid of this issue, I modified line 148 of file "./node_modules/hoek/lib/index.js:148".
Open the file with vi: vi ./node_modules/hoek/lib/index.js
vi ./node_modules/hoek/lib/index.js
I replaced this part:
exports.applyToDefaults = function (defaults, options, isNullOverride) row[3] ++ ' (' + row[0] + ':' + row[1] + ':' + row[2] + ')'); } return display; };
With this:
exports.applyToDefaults = function (defaults, options, isNullOverride) { var display = row[3] + ' (' + row[0] + ':' + row[1] + ':' + row[2] + ')'; return display; };
I hope that will help someone with the same issue.
Cheers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When executing this first command in the Learn IDE:
learn test
This error came up:
To get rid of this issue, I modified line 148 of file "./node_modules/hoek/lib/index.js:148".
Open the file with vi:
vi ./node_modules/hoek/lib/index.js
I replaced this part:
With this:
I hope that will help someone with the same issue.
Cheers
The text was updated successfully, but these errors were encountered: