3 lines
113 B
Plaintext
3 lines
113 B
Plaintext
import bcrypt from 'bcrypt';
|
|
const hashedPassword = await bcrypt.hash('Tux4esp', 10);
|
|
console.log(hashedPassword) |