the-tip-top-backend/node_modules/bcrypt/examples/forever_gen_salt.js
2025-10-28 00:31:47 +01:00

9 lines
162 B
JavaScript

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