aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2017-09-09Revert "Update Random to create a per-instance copy of the RNG"Marak1-15/+3
This reverts commit 8a33cf0e7a57f8fe766034706d0230802788d1ff.
2017-09-08Merge pull request #516 from thewhodidthis/developMarak14-5901/+0
[dist] [locales] Remove duplicate lorem/supplemental.js
2017-09-08Update Random to create a per-instance copy of the RNGChris Chambers1-3/+15
Before this change, it appeared that multiple, independent Faker instances were legal. But, when multiple instances were created, their shared random number generators would overwrite each others' states. After this change, each Random instance (and therefore each Faker instance) has its own copy of the random number generator, ensuring that calls to one Faker instance do not affect the stream of values generated by another.
2017-09-08Merge pull request #455 from andresilvagomez/max-min-latlongMarak1-4/+12
[api] Add max, min for latitude and longitude
2017-09-08[minor] Fix typo in code commentMarak1-1/+1
2017-09-08Merge pull request #366 from joonhocho/masterMarak1-0/+28
[api] Add `faker.random.arrayElements`
2017-09-08Merge pull request #303 from shadefinale/masterMarak3-36/+38
[api] [locale] More accurate US/CA phone numbers.
2017-09-08Merge pull request #524 from chilicoder/masterMarak1-0/+2
[api] add alphanumeric symbol * to `helpers.replaceSymbols`
2017-09-08Merge pull request #488 from APIs-guru/masterMarak1-0/+4
[api] Add 'Faker.setLocale' method to solve problem with ES6 import
2017-09-08Merge pull request #487 from atorkhov/patch-2Marak1-1/+21
[api] Added faker.date.soon
2017-09-08Merge branch 'master' of https://github.com/Marak/faker.jsMarak1-1/+1
2017-09-08Merge branch 'creditCard' of https://github.com/zpiman/faker.jsMarak27-56/+230
2017-09-08Merge pull request #446 from dugoh/price-fixMarak1-1/+1
[api] Price should default minimum to 1
2017-09-08Merge pull request #419 from cvega/masterMarak3-5/+69
[api] [dist] Add system methods, update travis.yml
2017-09-08Merge pull request #514 from ygnr/masterMarak2-0/+30
[api] Add Ethereum Address
2017-09-07Merge pull request #494 from tullmann/patch-1Marak1-1/+0
[locale] [fix] [minor] Remove emdash from pl's first_name.js
2017-09-07hacker ru-locale updatesdhilt6-27/+69
2017-09-07hacker phrase module extractdhilt4-13/+14
2017-09-08Update Australian postcode rangesDavid Beitey1-7/+1
Ranges also include 1000-1999 and 8000-9999, see https://en.wikipedia.org/wiki/Postcodes_in_Australia#Allocation
2017-09-05added missing townThomas Hochörtler1-0/+1
my hometown is missing. tha's a MASSIVE issue ;)
2017-09-03[api] [fix] [minor] Wrong scope for gender Marak1-2/+1
2017-09-03[api] Added 71 additional gender optionsMarak4-2/+87
* 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 classMarak2-1/+19
2017-08-20[api] First pass at `faker.unique` moduleMarak1-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-08-10add alphanumeric symbol * to helpers.replaceSymbolsIaroslav Popov1-0/+2
2017-07-27Adds description to lorem.word()Johnny Reina1-1/+1
2017-07-27Adds length filter to lorem.word()Johnny Reina1-3/+4
2017-07-07Added South African (SA) LocaleNusrath Khan20-0/+443
2017-07-03Cleanup extra/duplicate lorem/supplemental.js locale files and exportsSotiris Bakagiannis14-5901/+0
2017-06-19Generate an ethereum addressGokulnath Reddy1-0/+11
2017-06-19Generate a hexaDecimal stringGokulnath Reddy1-0/+19
2017-04-03Remove emdash from pl's first_name.jsPat Tullmann1-1/+0
I think this em-dash was separating the male and female names? Its definitely not a good first name to suggest. (I noticed when faker.internet.domainWord() returned this em-dash.)
2017-03-08Add 'setLocale' method to solve problem with ES6 importIvan Goncharov1-0/+4
2017-03-07Add faker.date.soon methodAlexey Torkhov1-1/+21
2017-03-02Merge pull request #408 from paolo-tanium/allow-mac-to-specify-separatorMarak1-3/+13
[api] Allow user to specify separator to be used in mac address
2017-03-01Merge pull request #476 from AlmazN/masterMarak6-0/+91
[api] ru locale hacker directory
2017-03-01require abbreviation removedAlmazN2-32/+0
2017-03-01rewrite and add some new translation for wordsAlmazN4-51/+51
2017-03-01Fix generation of float numbersIvan Goncharov1-1/+3
Fixes #401
2017-02-27add one more translated word into ru localeAlmazN1-1/+1
2017-02-27ru index.js ru.hacker field addedAlmazN1-0/+1
2017-02-27added ru locale of hacker dirAlmazN6-0/+122
2017-02-26replace String.prototype.repeat with proper helperJakub Mandula1-17/+19
2017-02-26Merge branch 'Mark/origin' into creditCardJakub Mandula108-112/+19820
2017-02-21[api] Added bindAll() to Database module #377Marak1-3/+1
2017-02-21Statically bind all module methodsJim Fitzpatrick1-13/+22
Statically bind the methods on all modules to their correct context so that the methods can be called in a composable, callback-oriented manner. Closes #376 Conflicts: lib/index.js test/all.functional.js
2017-02-20[api] [fix] Remove old image links. Closes #464Marak2-18/+0
2017-02-11[api] [minor] Rename `dataurl` to `dataUri`Marak1-2/+2
2017-02-11#420 Added dataurl methodSylvain BANNIER1-1/+13
2017-02-11[api] Added additional https option for imageUrlMarak1-3/+6
* Only covers one image generation method * Current function signature is bloated * Needs to be refactored into options hash * Starts to address #442