Select the types of activity you want to include in your feed.
1import bcrypt from 'bcryptjs'; 2 3export async function hashPassword(rawPassword: string) { 4 return bcrypt.hash(rawPassword, 5); 5}