Files
glink-website/node_modules/bcrypt/examples/forever_gen_salt.js
2023-06-25 10:50:38 -05:00

9 lines
165 B
JavaScript

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