Open Vinorcola opened 9 years ago
Yes, could this be fixed please? node_modules/bcrypt-nodejs/bCrypt.js:519 password = password + (minor >= 'a' ? "\000" : "");
I'd prefer to enable ES6 everywhere in native node 4.x but I can't when dependent modules like this don't support 'use strict' mode.
@doliver3 This module seems not to be maintain anymore.
I switch to https://www.npmjs.com/package/bcrypt. I suggest you do the same ;)
This worked for me:
password = password + (minor >= 'a' ? parseInt('000', 8) : "");
Hello,
This library is not compatible with "use strict" mode. If you launch a project with:
Then, the following errors occurs:
Would it be possible to fix this?
Thanks