Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

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}