-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
59 lines (58 loc) · 1.15 KB
/
test.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
50
51
52
53
54
55
56
57
58
59
// craft class to operate Mongoose
const base = [
{
"id": 1,
"customer": "fulano de tal",
"level": 1,
"banner": {
"size": "small"
},
"created_at": "17/11/2020"
},
{
"id": 2,
"customer": "beltraninho",
"level": 2,
"banner": {
"size": "medium"
},
"created_at": "17/11/2020"
},
{
"id": 3,
"customer": "cicranovski",
"level": 2,
"banner": {
"size": "small"
},
"created_at": "17/11/2020"
},
{
"id": 4,
"customer": "Mussum Distribuidora de Bebidis",
"level": 10,
"banner": {
"size": "large"
},
"created_at": "17/11/2020"
},
{
"id": 5,
"customer": "fulano de tal",
"level": 1,
"banner": {
"size": "small"
},
"created_at": "17/11/2020"
},
{
"id": 6,
"customer": "fulano de tal",
"level": 1,
"banner": {
"size": "small"
},
"created_at": "17/11/2020"
}
];
module.exports = base