aboutsummaryrefslogtreecommitdiff
path: root/lib/index.js
AgeCommit message (Collapse)AuthorFilesLines
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-09Merge remote-tracking branch 'codemanx/master'Marak1-3/+3
2017-02-09[api] [minor] Expose seed option to Faker classMarak1-1/+1
* Closes #456 * Could use additional tests
2017-02-09[api] [fix] Typo in require statementMarak1-1/+1
2017-02-09[api] [fix] Ensure database methods are mappedMarak1-0/+1
* Was causing database methods to fail * All methods need to be explicitly mapped
2017-02-09added Database namespacekulaeff1-0/+3
2016-06-13move credit_card into finance + add to definitionsJakub Mandula1-1/+1
2016-04-07Add IBAN and BIC generator functionsCoDEmanX1-1/+1
2016-04-07Correct spellingCoDEmanX1-2/+2
2016-03-03Install jsdoc and add doclet stubs for all methodsTobias Witt1-0/+4
Descriptions are taken from existing comments if available. The address module already has some new sample descriptions.
2016-02-15[api] Rename safe_email -> exampleEmail #301Marak1-1/+1
* Public API convention is camelCase * "example" seemed more explicit than "safe"
2016-02-14add faker.internet.safe_emailalexei-lexx1-1/+1
Conflicts: lib/internet.js
2016-02-06[api] Added concept of "System" moduleMarak1-1/+3
* Allows for creation of fake systems data * So far has file-system related methods * Mime-types * File extensions * File names
2015-07-21Merge pull request #243 from Aweary/random-seedMarak1-11/+14
[api] Implement faker.seed for deterministic output
2015-07-18Adding generators: faker.date.month(), faker.date.weekday()Michael Radionov1-0/+1
2015-07-15Implemented faker.seed method for randomization seedingBrandon Dail1-11/+14
2015-07-08Merge pull request #234 from portse/masterMarak1-1/+1
[fix] Canadian zip format broken after locale spliting
2015-07-08[fix] [api] Add back commerce methods.Marak1-0/+3
2015-07-08When the locales were split out (commit: ↵portse1-1/+1
760e50ff2d04a95c990aff98ab84a6c17fb3854c), the en_CA locale lost its zipFormat definition added in PR #173. * Reverted back to simply using the postcode definition. * Updated zipCode function to use that definition for the locale. * Ensure en_CA locale has a postcode definition file.
2015-07-08[refactor] [major] Adds incremental browser builds. Switch to using ↵Marak1-68/+104
prototype for internal API. Previous usage of `module.parent` is not acceptable. Locale information is now passed into Faker constructor. Closes #125
2015-07-07[refactor] [dist] Allow for node to require individual locales ( to avoid ↵Marak1-0/+90
the default behavior of requiring all locale data. #125 #167