| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-01-14 | chore: remove ts-generated source files | Shinigami92 | 1 | -270/+0 | |
| 2022-01-11 | chore: format lib without locales (#66) | Shinigami | 1 | -33/+126 | |
| 2021-05-19 | Removed seed call from unit tests | Adam Walker | 1 | -1/+1 | |
| 2021-05-19 | Revert formatting changes to lib/index.js made by prettier | Adam Walker | 1 | -8/+8 | |
| 2021-05-19 | Add remaining methods and libs from feature request. | Adam Walker | 1 | -2/+1 | |
| 2021-05-19 | Initial commit of word.noun and word.verb | Adam Walker | 1 | -7/+12 | |
| 2021-03-24 | Give each faker instance its own random number generator | Charles Lowell | 1 | -0/+3 | |
| Currently, every Faker instance shares the same random number generator instance which means that to seed one faker instance is to seed them all. This can result in duplicate data being generated all over the place. This just extracts the public API of the mersenne twister found in `vendor/mersenne.js` and creates a single instance of it per faker. This implementation is a tad sub-optimal since calling `seed()` on a faker instance will result in two redundant calls to `mersenne.init_genrand()`: one in `random.js` and the other in `datatype.js`. It would probably be more DRY to create the mersenne instance once in faker and then pass it into to the `Random` and `Datatype` instances, however, this takes the strategy of the smallest possible API change. | |||||
| 2021-03-18 | perf(system): improve commonFileName, commonFileExt, fileType, directoryPath ↵ | Christian | 1 | -49/+48 | |
| performance fixes #822 | |||||
| 2021-03-03 | Issue 1114: new datatypes module | lbuerste | 1 | -0/+2 | |
| Current status: - moved tests with seeding problem back to random.unit - implemented date method - added datatype module to seed funtion - added tests for date method | |||||
| 2021-03-03 | Issue 1114: New datatype module | LBuerstmayr | 1 | -2/+2 | |
| Current status: - moved number(), float(), hexaDecimal(), boolean(), uuid() from random to datatype - moved respective test from random.unit to datatype.unit - tests of moved methods in random now check if DeprecationWarning is printed and respective method in datatype module is called - adapted all lib files that use moved methods (mostly number) - adapted tests of respective files to spy on the correct method - adapted README in order to promote usage of method that logs a DeprecationWarning | |||||
| 2021-03-03 | WIP: issue-1114-datatypes-module | LBuerstmayr | 1 | -0/+3 | |
| 2021-02-18 | Fix typo | Marak | 1 | -1/+1 | |
| 2021-02-18 | Merge branch 'master' into use-french-cities-name | Marak | 1 | -3/+3 | |
| 2021-02-17 | Adds support for binary gender definitions | Marak | 1 | -1/+1 | |
| 2021-02-16 | adding more datasets to animal module | RavsCodes20 | 1 | -1/+1 | |
| added more common animals and associated tests. Added type for choosing random catagory by name | |||||
| 2021-02-14 | Merge branch 'master' into use-french-cities-name | Marak | 1 | -0/+4 | |
| 2021-02-12 | Adds missing `animal` module | Marak | 1 | -1/+1 | |
| Removes un-used animal references Fix broken test | |||||
| 2021-02-12 | adding animal module | RavsCodes20 | 1 | -0/+4 | |
| started with dogs, added a defintion, an array of dogs breeds, and an associated test. | |||||
| 2021-02-12 | Allow using real city name when available | Morgan Denis | 1 | -1/+1 | |
| 2020-09-06 | Merge pull request #837 from mrstebo/add-music-faker | Marak | 1 | -0/+4 | |
| Added the Music module | |||||
| 2020-08-25 | Merge branch 'master' into country-code-alpha-3 | Marak | 1 | -2/+5 | |
| 2020-08-18 | add time_zone | mkg0 | 1 | -1/+1 | |
| 2020-06-10 | Merge pull request #823 from ashishra0/add-product-description | Marak | 1 | -1/+1 | |
| add random product description generator | |||||
| 2019-10-09 | Added the Music faker. | Steve Atkinson | 1 | -0/+4 | |
| 2019-09-11 | add random product description generator | Ashish Rao | 1 | -1/+1 | |
| 2019-06-20 | feat: added support for generating a random alpha-3 country code | kaykhan | 1 | -1/+1 | |
| 2018-11-12 | adding unit test | siwalikm | 1 | -0/+3 | |
| 2018-10-28 | [api] Added vehicle module #555 | Marak | 1 | -0/+4 | |
| 2018-10-28 | [api] [refactor] Remove `bindAll` method #376 | Marak | 1 | -26/+16 | |
| * Was previously used for `this` scoping issue * Should no longer be needed * Should not cause any issues | |||||
| 2018-10-20 | resolve conflict | Tyler | 1 | -0/+1 | |
| 2018-10-20 | merge with master | Tyler | 1 | -3/+6 | |
| 2018-10-14 | Add locale pt_PT | Tito Nobre | 1 | -1/+1 | |
| 2018-09-24 | fix: system.directoryPath and system.filePath | Simone Sanfratello | 1 | -1/+1 | |
| 2018-09-23 | Merge pull request #600 from karllhughes/400-zipcode-by-state-1 | Marak | 1 | -1/+1 | |
| Added `address.postcode_by_state` | |||||
| 2018-09-23 | add git module to lib | Danielle Adams | 1 | -0/+3 | |
| 2018-01-20 | Adding test for zipcode by state, basic functionality | Karl Hughes | 1 | -1/+1 | |
| 2017-10-22 | add direction abbr options with tests | Tyler | 1 | -1/+1 | |
| 2017-10-21 | add unit tests and schema desciptions | Tyler | 1 | -1/+1 | |
| 2017-10-15 | add missing semicolons | Tyler | 1 | -2/+2 | |
| 2017-10-10 | add random vehicle option to _definitions | Tyler Reichle | 1 | -1/+1 | |
| 2017-10-10 | add make with model and color generators. additional vin numbers | Tyler | 1 | -1/+1 | |
| 2017-10-09 | add vehicle generator and data | Tyler | 1 | -0/+4 | |
| 2017-09-08 | Merge pull request #488 from APIs-guru/master | Marak | 1 | -0/+4 | |
| [api] Add 'Faker.setLocale' method to solve problem with ES6 import | |||||
| 2017-09-08 | Merge branch 'creditCard' of https://github.com/zpiman/faker.js | Marak | 1 | -1/+1 | |
| 2017-09-07 | hacker phrase module extract | dhilt | 1 | -1/+1 | |
| 2017-09-03 | [api] Added 71 additional gender options | Marak | 1 | -1/+1 | |
| * Adds new gender options for `en` locality * Updates example page to use gender * Still needs translations for other locales | |||||
| 2017-08-20 | [api] [minor] [refactor]`faker.unique` into class | Marak | 1 | -1/+3 | |
| 2017-08-20 | [api] First pass at `faker.unique` module | Marak | 1 | -0/+2 | |
| * Adds unique value API for use with any method * Using in-memory store for unique values * Provides maxRetries and maxTime options * RE: #466 #245 #477 | |||||
| 2017-03-08 | Add 'setLocale' method to solve problem with ES6 import | Ivan Goncharov | 1 | -0/+4 | |
| 2017-02-26 | Merge branch 'Mark/origin' into creditCard | Jakub Mandula | 1 | -18/+29 | |
