-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasual.js
51 lines (47 loc) · 1.46 KB
/
casual.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
const casual = require('casual');
function generateCasualCustomers() {
let users = [];
for (let i = 101; i < 200; i++) {
let name = casual._full_name();
let username = casual._username();
let address = casual._address();
let city = casual._city();
let state = casual._state();
let country = casual._country();
let buildingNo = casual._building_number();
let phoneNo = casual._phone();
let email = casual._email();
let card = casual._card_data();
let companyName = casual._company_name();
let latitude = casual._latitude();
let longitude = casual._longitude();
let shortDesc = casual._short_description();
users.push({
"id": i,
"name": name,
"username": username,
"resiAddress": {
"buildingNo": buildingNo,
"streetAddress": address,
"city": city,
"state": state,
"country": country,
},
"place": {
"geologial": {
"latitude": latitude,
"langitude": longitude
}
},
"phoneNo": phoneNo,
"email": email,
"card": card,
"companyName": companyName,
"shortDesc": shortDesc
});
}
return {
"users": users
}
}
module.exports = generateCasualCustomers;