forked from faker-js/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhacker.ts
84 lines (76 loc) · 1.66 KB
/
hacker.ts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import type { Faker } from '.';
export class Hacker {
constructor(private readonly faker: Faker) {
// Bind `this` so namespaced is working correctly
for (const name of Object.getOwnPropertyNames(Hacker.prototype)) {
if (name === 'constructor' || typeof this[name] !== 'function') {
continue;
}
this[name] = this[name].bind(this);
}
}
/**
* abbreviation
*
* @method faker.hacker.abbreviation
*/
abbreviation(): string {
return this.faker.random.arrayElement(
this.faker.definitions.hacker.abbreviation
);
}
/**
* adjective
*
* @method faker.hacker.adjective
*/
adjective(): string {
return this.faker.random.arrayElement(
this.faker.definitions.hacker.adjective
);
}
/**
* noun
*
* @method faker.hacker.noun
*/
noun(): string {
return this.faker.random.arrayElement(this.faker.definitions.hacker.noun);
}
/**
* verb
*
* @method faker.hacker.verb
*/
verb(): string {
return this.faker.random.arrayElement(this.faker.definitions.hacker.verb);
}
/**
* ingverb
*
* @method faker.hacker.ingverb
*/
ingverb(): string {
return this.faker.random.arrayElement(
this.faker.definitions.hacker.ingverb
);
}
/**
* phrase
*
* @method faker.hacker.phrase
*/
phrase(): string {
const data = {
abbreviation: this.abbreviation,
adjective: this.adjective,
ingverb: this.ingverb,
noun: this.noun,
verb: this.verb,
};
const phrase = this.faker.random.arrayElement(
this.faker.definitions.hacker.phrase
);
return this.faker.helpers.mustache(phrase, data);
}
}