aboutsummaryrefslogtreecommitdiff
path: root/docs/api
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2022-03-01 19:55:53 +0100
committerGitHub <[email protected]>2022-03-01 19:55:53 +0100
commit61fafe47547873fcde74e98bff2a70738df7d4f2 (patch)
tree379432fee1ba309ba1a004bd37af04bba4628a79 /docs/api
parent442812f66a5ad9a42e389ad1ae06dbbcddad4e99 (diff)
downloadfaker-61fafe47547873fcde74e98bff2a70738df7d4f2.tar.xz
faker-61fafe47547873fcde74e98bff2a70738df7d4f2.zip
docs: generate docs for fake() and unique() (#564)
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/.gitignore1
-rw-r--r--docs/api/fake.md11
2 files changed, 0 insertions, 12 deletions
diff --git a/docs/api/.gitignore b/docs/api/.gitignore
index d77f28d2..0b938bbe 100644
--- a/docs/api/.gitignore
+++ b/docs/api/.gitignore
@@ -1,4 +1,3 @@
*.md
-!fake.md
!localization.md
*.ts
diff --git a/docs/api/fake.md b/docs/api/fake.md
deleted file mode 100644
index 8fae509a..00000000
--- a/docs/api/fake.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Fake
-
-Useful generator method `faker.fake()` for combining faker API methods using a mustache string format.
-
-```js
-faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}');
-// Wintheiser, Shaylee Sr.
-
-faker.fake('{{company.bs}} is short for {{address.streetName}}');
-// cutting-edge leverage web services is short for Flatley Rue
-```