aboutsummaryrefslogtreecommitdiff
path: root/docs/api/hacker.md
diff options
context:
space:
mode:
authorJess <[email protected]>2022-01-12 19:48:48 -0500
committerGitHub <[email protected]>2022-01-12 19:48:48 -0500
commit71e902599651b645cdb6996c8cd562e8007a32ea (patch)
tree368e83ffbeb836d5c66ad7af53c765c7444a26cb /docs/api/hacker.md
parenta590f266e02d8f8a2cac65cb6e8bd395bf04074b (diff)
downloadfaker-71e902599651b645cdb6996c8cd562e8007a32ea.tar.xz
faker-71e902599651b645cdb6996c8cd562e8007a32ea.zip
feat: adding documentation with vitepress (#80)
Diffstat (limited to 'docs/api/hacker.md')
-rw-r--r--docs/api/hacker.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/api/hacker.md b/docs/api/hacker.md
new file mode 100644
index 00000000..d692d4ae
--- /dev/null
+++ b/docs/api/hacker.md
@@ -0,0 +1,51 @@
+# Hacker
+
+[[toc]]
+
+## Abbreviation
+
+Return random abbreviation
+
+```js
+faker.hacker.abbreviation(); // SMTP
+```
+
+## Adjective
+
+Return random adjective
+
+```js
+faker.hacker.adjective(); // wireless
+```
+
+## Noun
+
+Return random noun
+
+```js
+faker.hacker.noun(); // capacitor
+```
+
+## Phrase
+
+Return random phrase
+
+```js
+faker.hacker.phrase(); // Try to reboot the SQL bus, maybe it will bypass the virtual application!
+```
+
+## Verb
+
+Return random verb
+
+```js
+faker.hacker.verb(); // parse
+```
+
+## -ing Verb
+
+Return random ingverb
+
+```js
+faker.hacker.ingverb(); // programming
+```