-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest0.js
49 lines (46 loc) · 774 Bytes
/
test0.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
let Validator = require('./validator')
let input = {
username: 'Max',
age: 19,
surname: 'Maxi',
lastname: 'Eichenauer',
country: 'Germany',
province: undefined,
city: undefined,
gender: 'Male',
}
let template = {
username: {
type: 'string',
required: true,
validate: (a) => { return a.length >= 3 }
},
age: {
type: 'number',
validate: (a) => { return a > 18 && a < 100 },
required: true
},
surname: {
type: 'string'
},
lastname: {
type: 'string'
},
country: {
type: 'string'
},
province: {
type: 'string'
},
city: {
type: 'string'
},
browser: {
type: 'string'
},
zodiac: {
type: 'string',
required: true
}
}
console.log(new Validator(input, template).validation)