diff options
| author | Shinigami <[email protected]> | 2022-05-04 11:48:03 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-04 11:48:03 +0200 |
| commit | 683ee3405c39408d74d74cac0755a26de7a99e35 (patch) | |
| tree | 30a51b3fe3bf1013149045777f84e0d8de9724c5 /docs | |
| parent | 100a1ea230cba422174a6b5103c56bc4cf9c0dc4 (diff) | |
| download | faker-683ee3405c39408d74d74cac0755a26de7a99e35.tar.xz faker-683ee3405c39408d74d74cac0755a26de7a99e35.zip | |
refactor!: remove deprecations (#916)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/.vitepress/api-pages.ts | 1 | ||||
| -rw-r--r-- | docs/guide/index.md | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/docs/.vitepress/api-pages.ts b/docs/.vitepress/api-pages.ts index 88f6c48e..ff4ccece 100644 --- a/docs/.vitepress/api-pages.ts +++ b/docs/.vitepress/api-pages.ts @@ -23,7 +23,6 @@ export const apiPages = [ { text: 'Phone', link: '/api/phone.html' }, { text: 'Random', link: '/api/random.html' }, { text: 'System', link: '/api/system.html' }, - { text: 'Time', link: '/api/time.html' }, { text: 'Unique', link: '/api/unique.html' }, { text: 'Vehicle', link: '/api/vehicle.html' }, { text: 'Word', link: '/api/word.html' }, diff --git a/docs/guide/index.md b/docs/guide/index.md index 61fe9a3d..18bd257c 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -46,7 +46,6 @@ import { faker } from '@faker-js/faker'; const randomName = faker.name.findName(); // Rowan Nikolaus const randomEmail = faker.internet.email(); // [email protected] -const randomCard = faker.helpers.createCard(); // An object representing a random contact card containing many properties ``` ### Browser @@ -60,10 +59,6 @@ const randomCard = faker.helpers.createCard(); // An object representing a rando const randomEmail = faker.internet.email(); - - // An object representing a random contact card - // containing many properties - const randomCard = faker.helpers.createCard(); </script> ``` @@ -78,7 +73,6 @@ import { faker } from 'https://cdn.skypack.dev/@faker-js/faker'; const randomName = faker.name.findName(); // Willie Bahringer const randomEmail = faker.internet.email(); // [email protected] -const randomCard = faker.helpers.createCard(); // random contact card containing many properties ``` :::tip Note |
