You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We see a syntax error in node ES2015 strict mode. The error says:
/node_modules/restler/lib/multipartform.js:112
fs.open(this.value.path, "r", 0666, function (err, fd) {
^^^^
SyntaxError: Octal literals are not allowed in strict mode.
It is important for us to fix it for staying compatible with latest modes of running the app. The moment I spotted this is because I use sendwithus in an app that has dependency on this package.
ES2015 strict mode is getting popular. I run my app using node --use_strict app.js for strict mode, that gives access to new features like letand many others.
The text was updated successfully, but these errors were encountered:
We see a syntax error in node ES2015 strict mode. The error says:
It is important for us to fix it for staying compatible with latest modes of running the app. The moment I spotted this is because I use
sendwithus
in an app that has dependency on this package.ES2015 strict mode is getting popular. I run my app using
node --use_strict app.js
for strict mode, that gives access to new features likelet
and many others.The text was updated successfully, but these errors were encountered: