Files
eagler-tiers/node_modules/bcrypt/examples/forever_gen_salt.js
starified 08bf320b57 uploaded
2026-04-21 22:03:19 -04:00

9 lines
162 B
JavaScript

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