-
-
Notifications
You must be signed in to change notification settings - Fork 929
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: faker.animal.type now has 44 possible animals #3258
Conversation
s-inu
commented
Nov 12, 2024
•
edited
Loading
edited
`faker.animal.type` now has **44** possible animals ```ts import { faker } from "@faker-js/faker"; const animals = faker.helpers.uniqueArray(faker.animal.type, 1e3); const animalSet = new Set(animals); console.log(animals.length); // 44 console.log(animalSet.size); // 44 ```
✅ Deploy Preview for fakerjs ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## next #3258 +/- ##
=======================================
Coverage 99.96% 99.96%
=======================================
Files 2806 2806
Lines 217144 217144
Branches 979 976 -3
=======================================
+ Hits 217065 217070 +5
+ Misses 79 74 -5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch 👍
Maybe we could switch to |
IMO 44 entries is sufficiently small to get the point across. |