GIF89a php
Current File : /home/viralhoga/app_viralhoga/node_modules/bcrypt/examples/forever_gen_salt.js
const bcrypt = require('../bcrypt');

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