blob: 30805e4b63ebe60472c1b356fe0a61ada3e6a779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import db from '../../db/mongodb';
const collection = db.get('users');
(collection as any).index('username'); // fuck type definition
(collection as any).index('token'); // fuck type definition
export default collection as any; // fuck type definition
export function validateUsername(username: string): boolean {
return /^[a-zA-Z0-9\-]{3,20}$/.test(username);
}
export function isValidBirthday(birthday: string): boolean {
return /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
}
|