Hashes a password asynchronously.
The password to hash.
The hashed password.
const hashed = await hashPassword("SuperSecret123!");console.log(hashed); // $2b$10$... Copy
const hashed = await hashPassword("SuperSecret123!");console.log(hashed); // $2b$10$...
Hashes a password asynchronously.