2 lines
90 B
JavaScript
2 lines
90 B
JavaScript
const bcrypt = require("bcrypt");
|
|
bcrypt.hash("1234", 10).then(hash => console.log(hash)); |