UNPKG

165 BJavaScriptView Raw
1var bcrypt = require('../bcrypt');
2
3(function printSalt() {
4 bcrypt.genSalt(10, function(err, salt) {
5 console.log('salt: ' + salt);
6 printSalt();
7 });
8})()