recipe-backend/node_modules/bcrypt/examples/forever_gen_salt.js
2025-09-21 12:39:54 +02:00

8 lines
162 B
JavaScript

const bcrypt = require('../bcrypt');
(function printSalt() {
bcrypt.genSalt(10, (err, salt) => {
console.log('salt: ' + salt);
printSalt();
});
})()