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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
import type { Faker } from '../..';
/**
* Module to generate hacker/IT words and phrases.
*
* ### Overview
*
* There are methods for different parts of speech, such as [`abbreviation()`](https://next.fakerjs.dev/api/hacker.html#abbreviation), [`adjective()`](https://next.fakerjs.dev/api/hacker.html#adjective), [`noun()`](https://next.fakerjs.dev/api/hacker.html#noun), [`verb()`](https://next.fakerjs.dev/api/hacker.html#verb), and [`ingverb()`](https://next.fakerjs.dev/api/hacker.html#ingverb). Alternatively, [`phrase()`](https://next.fakerjs.dev/api/hacker.html#phrase) creates a longer phrase combining these words.
*
* ### Related modules
*
* Various modules allow for generating other types of words and phrases:
*
* - [faker.word](https://next.fakerjs.dev/api/word.html) uses general vocabulary rather than hacker-specific terms.
* - [faker.lorem](https://next.fakerjs.dev/api/lorem.html) uses faux-Latin "lorem ipsum" text.
* - [faker.company](https://next.fakerjs.dev/api/company.html) includes corporate catchphrases and buzzwords.
*/
export class HackerModule {
constructor(private readonly faker: Faker) {
// Bind `this` so namespaced is working correctly
for (const name of Object.getOwnPropertyNames(
HackerModule.prototype
) as Array<keyof HackerModule | 'constructor'>) {
if (name === 'constructor' || typeof this[name] !== 'function') {
continue;
}
this[name] = this[name].bind(this);
}
}
/**
* Returns a random hacker/IT abbreviation.
*
* @example
* faker.hacker.abbreviation() // 'THX'
*
* @since 2.0.1
*/
abbreviation(): string {
return this.faker.helpers.arrayElement(
this.faker.definitions.hacker.abbreviation
);
}
/**
* Returns a random hacker/IT adjective.
*
* @example
* faker.hacker.adjective() // 'cross-platform'
*
* @since 2.0.1
*/
adjective(): string {
return this.faker.helpers.arrayElement(
this.faker.definitions.hacker.adjective
);
}
/**
* Returns a random hacker/IT noun.
*
* @example
* faker.hacker.noun() // 'system'
*
* @since 2.0.1
*/
noun(): string {
return this.faker.helpers.arrayElement(this.faker.definitions.hacker.noun);
}
/**
* Returns a random hacker/IT verb.
*
* @example
* faker.hacker.verb() // 'copy'
*
* @since 2.0.1
*/
verb(): string {
return this.faker.helpers.arrayElement(this.faker.definitions.hacker.verb);
}
/**
* Returns a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).
*
* @example
* faker.hacker.ingverb() // 'navigating'
*
* @since 2.0.1
*/
ingverb(): string {
return this.faker.helpers.arrayElement(
this.faker.definitions.hacker.ingverb
);
}
/**
* Generates a random hacker/IT phrase.
*
* @example
* faker.hacker.phrase()
* // 'If we override the card, we can get to the HDD feed through the back-end HDD sensor!'
*
* @since 2.0.1
*/
phrase(): string {
const data = {
abbreviation: this.abbreviation,
adjective: this.adjective,
ingverb: this.ingverb,
noun: this.noun,
verb: this.verb,
};
const phrase = this.faker.helpers.arrayElement(
this.faker.definitions.hacker.phrase
);
return this.faker.helpers.mustache(phrase, data);
}
}
|