How do I use pre w/ bcrypt when updating an existing document?
This works fine for the registration process... // Hash/Salt Password AccountSchema.pre('save', function(next) { const account = this; bcrypt.hash(account.password, 10, function(err, hash) { if (err) return next(err); account.password = h...