aboutsummaryrefslogtreecommitdiff
path: root/doc/quicksearch.html
blob: adc9dbdb61b3375f0432faa446d94ffb6462b30e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head>
</head>
<body style="background: transparent;">
    <script src="scripts/docstrap.lib.js"></script>
    <script src="scripts/lunr.min.js"></script>
    <script src="scripts/fulltext-search.js"></script>

    <script type="text/x-docstrap-searchdb">
    {"global.html":{"id":"global.html","title":"Global","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Global Methods arrayRemove(arr, values) Method to reduce array of characters Parameters: Name Type Description arr existing array of characters values array of characters which should be removed Returns: new array without banned characters Type * arrayRemove(arr, values) Method to reduce array of characters Parameters: Name Type Description arr existing array of characters values array of characters which should be removed Returns: new array without banned characters Type * unique() unique unique() unique × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"namespaces.list.html":{"id":"namespaces.list.html","title":"Namespaces","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespaces Namespaces faker faker address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image lorempicsum lorempixel unsplash internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"index.html":{"id":"index.html","title":"Index","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique faker.js - generate massive amounts of fake data in the browser and node.js Demo https://rawgit.com/Marak/faker.js/master/examples/browser/index.html Faker Cloud Don't have a local development setup ready? Try our hosted version of Faker at https://fakercloud.com/api https://github.com/faker/faker-cloud Usage Browser &lt;script src = \"faker.js\" type = \"text/javascript\"&gt;&lt;/script&gt; &lt;script&gt; var randomName = faker.name.findName(); // Caitlyn Kerluke var randomEmail = faker.internet.email(); // [email protected] var randomCard = faker.helpers.createCard(); // random contact card containing many properties &lt;/script&gt; Node.js var faker = require('faker'); var randomName = faker.name.findName(); // Rowan Nikolaus var randomEmail = faker.internet.email(); // [email protected] var randomCard = faker.helpers.createCard(); // random contact card containing many properties API JSDoc API Browser http://marak.github.io/faker.js/ API Methods address zipCode zipCodeByState city cityPrefix citySuffix cityName streetName streetAddress streetSuffix streetPrefix secondaryAddress county country countryCode state stateAbbr latitude longitude direction cardinalDirection ordinalDirection nearbyGPSCoordinate timeZone animal dog cat snake bear lion cetacean horse bird cow fish crocodilia insect rabbit type commerce color department productName price productAdjective productMaterial product productDescription company suffixes companyName companySuffix catchPhrase bs catchPhraseAdjective catchPhraseDescriptor catchPhraseNoun bsAdjective bsBuzz bsNoun database column type collation engine datatype number float datetime string uuid boolean hexaDecimal json array date past future between betweens recent soon month weekday fake finance account accountName routingNumber mask amount transactionType currencyCode currencyName currencySymbol bitcoinAddress litecoinAddress creditCardNumber creditCardCVV ethereumAddress iban bic transactionDescription git branch commitEntry commitMessage commitSha shortSha hacker abbreviation adjective noun verb ingverb phrase helpers randomize slugify replaceSymbolWithNumber replaceSymbols replaceCreditCardSymbols repeatString regexpStyleStringParse shuffle mustache createCard contextualCard userCard createTransaction image image avatar imageUrl abstract animals business cats city food nightlife fashion people nature sports technics transport dataUri lorempixel unsplash lorempicsum internet avatar email exampleEmail userName protocol httpMethod url domainName domainSuffix domainWord ip ipv6 port userAgent color mac password lorem word words sentence slug sentences paragraph paragraphs text lines mersenne rand seed seed_array music genre name firstName lastName middleName findName jobTitle gender prefix suffix title jobDescriptor jobArea jobType phone phoneNumber phoneNumberFormat phoneFormats random number float arrayElement arrayElements objectElement uuid boolean word words image locale alpha alphaNumeric hexaDecimal system fileName commonFileName mimeType commonFileType commonFileExt fileType fileExt directoryPath filePath semver time recent unique vehicle vehicle manufacturer model type fuel vin color vrm bicycle Faker.fake() faker.js contains a super useful generator method Faker.fake for combining faker API methods using a mustache string format. Example: console.log(faker.fake(\"{{name.lastName}}, {{name.firstName}} {{name.suffix}}\")); // outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName(), name.firstName(), and name.suffix() Localization As of version v2.0.0 faker.js has support for multiple localities. The default language locale is set to English. Setting a new locale is simple: // sets locale to de faker.locale = \"de\"; az ar cz de de_AT de_CH en en_AU en_AU_ocker en_BORK en_CA en_GB en_IE en_IND en_US en_ZA es es_MX fa fi fr fr_CA fr_CH ge hy hr id_ID it ja ko nb_NO ne nl nl_BE pl pt_BR pt_PT ro ru sk sv tr uk vi zh_CN zh_TW Individual Localization Packages faker.js supports incremental loading of locales. By default, requiring faker will include all locale data. In a production environment, you may only want to include the locale data for a specific set of locales. // loads only de locale var faker = require('faker/locale/de'); Setting a randomness seed If you want consistent results, you can set your own seed: faker.seed(123); var firstRandom = faker.datatype.number(); // Setting the seed again resets the sequence. faker.seed(123); var secondRandom = faker.datatype.number(); console.log(firstRandom === secondRandom); Tests npm install . make test You can view a code coverage report generated in coverage/lcov-report/index.html. Building faker.js faker uses gulp to automate its build process. Each build operation is a separate task which can be run independently. Browser Bundle npm run browser Building JSDocs JSDOC v3 HTML API documentation npm run jsdoc Building ReadMe The ReadMe.md file for faker.js is automatically generated and should not be modified directly. All updates to ReadMe.md should be performed in ./build/src/docs.md and then the build script should be run. npm run readme Version Release Schedule faker.js is a popular project used by many organizations and individuals in production settings. Major and Minor version releases are generally on a monthly schedule. Bugs fixes are addressed by severity and fixed as soon as possible. If you require the absolute latest version of faker.js the master branch @ http://github.com/marak/faker.js/ should always be up to date and working. Maintainer Marak Squires faker.js - Copyright (c) 2020 Marak Squires www.marak.com http://github.com/marak/faker.js/ faker.js was inspired by and has used data definitions from: https://github.com/stympy/faker/ - Copyright (c) 2007-2010 Benjamin Curtis http://search.cpan.org/~jasonk/Data-Faker-0.07/ - Copyright 2004-2005 by Jason Kohles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Backers Support us with a monthly donation and help us continue our activities. [Become a backer] Sponsors Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor] × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.html":{"id":"faker.html","title":"Namespace: faker","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: faker faker Namespaces address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle Methods &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string Namespace: faker faker Namespaces address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle Methods &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.address.html":{"id":"faker.address.html","title":"Namespace: address","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: address faker. address Methods &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; country() country &lt;static&gt; country() country &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; county() county &lt;static&gt; county() county &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String Namespace: address faker. address Methods &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; country() country &lt;static&gt; country() country &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; county() county &lt;static&gt; county() county &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.animal.html":{"id":"faker.animal.html","title":"Namespace: animal","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: animal faker. animal Methods &lt;static&gt; bear() bear &lt;static&gt; bear() bear &lt;static&gt; bird() bird &lt;static&gt; bird() bird &lt;static&gt; cat() cat &lt;static&gt; cat() cat &lt;static&gt; cetacean() cetacean &lt;static&gt; cetacean() cetacean &lt;static&gt; cow() cow &lt;static&gt; cow() cow &lt;static&gt; crocodilia() crocodilia &lt;static&gt; crocodilia() crocodilia &lt;static&gt; dog() dog &lt;static&gt; dog() dog &lt;static&gt; fish() fish &lt;static&gt; fish() fish &lt;static&gt; horse() horse &lt;static&gt; horse() horse &lt;static&gt; insect() insect &lt;static&gt; insect() insect &lt;static&gt; lion() lion &lt;static&gt; lion() lion &lt;static&gt; rabbit() rabbit &lt;static&gt; rabbit() rabbit &lt;static&gt; snake() snake &lt;static&gt; snake() snake &lt;static&gt; type() type &lt;static&gt; type() type Namespace: animal faker. animal Methods &lt;static&gt; bear() bear &lt;static&gt; bear() bear &lt;static&gt; bird() bird &lt;static&gt; bird() bird &lt;static&gt; cat() cat &lt;static&gt; cat() cat &lt;static&gt; cetacean() cetacean &lt;static&gt; cetacean() cetacean &lt;static&gt; cow() cow &lt;static&gt; cow() cow &lt;static&gt; crocodilia() crocodilia &lt;static&gt; crocodilia() crocodilia &lt;static&gt; dog() dog &lt;static&gt; dog() dog &lt;static&gt; fish() fish &lt;static&gt; fish() fish &lt;static&gt; horse() horse &lt;static&gt; horse() horse &lt;static&gt; insect() insect &lt;static&gt; insect() insect &lt;static&gt; lion() lion &lt;static&gt; lion() lion &lt;static&gt; rabbit() rabbit &lt;static&gt; rabbit() rabbit &lt;static&gt; snake() snake &lt;static&gt; snake() snake &lt;static&gt; type() type &lt;static&gt; type() type × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.commerce.html":{"id":"faker.commerce.html","title":"Namespace: commerce","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: commerce faker. commerce Methods &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; department() department &lt;static&gt; department() department &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; product() product &lt;static&gt; product() product &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productDescription() productDescription &lt;static&gt; productDescription() productDescription &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productName() productName &lt;static&gt; productName() productName Namespace: commerce faker. commerce Methods &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; department() department &lt;static&gt; department() department &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; product() product &lt;static&gt; product() product &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productDescription() productDescription &lt;static&gt; productDescription() productDescription &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productName() productName &lt;static&gt; productName() productName × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.company.html":{"id":"faker.company.html","title":"Namespace: company","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: company faker. company Methods &lt;static&gt; bs() bs &lt;static&gt; bs() bs &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsNoun() bsNoun &lt;static&gt; bsNoun() bsNoun &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companySuffix() companySuffix &lt;static&gt; companySuffix() companySuffix &lt;static&gt; suffixes() suffixes &lt;static&gt; suffixes() suffixes Namespace: company faker. company Methods &lt;static&gt; bs() bs &lt;static&gt; bs() bs &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsNoun() bsNoun &lt;static&gt; bsNoun() bsNoun &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companySuffix() companySuffix &lt;static&gt; companySuffix() companySuffix &lt;static&gt; suffixes() suffixes &lt;static&gt; suffixes() suffixes × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.database.html":{"id":"faker.database.html","title":"Namespace: database","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: database faker. database Methods &lt;static&gt; collation() collation &lt;static&gt; collation() collation &lt;static&gt; column() column &lt;static&gt; column() column &lt;static&gt; engine() engine &lt;static&gt; engine() engine &lt;static&gt; type() type &lt;static&gt; type() type Namespace: database faker. database Methods &lt;static&gt; collation() collation &lt;static&gt; collation() collation &lt;static&gt; column() column &lt;static&gt; column() column &lt;static&gt; engine() engine &lt;static&gt; engine() engine &lt;static&gt; type() type &lt;static&gt; type() type × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.datatype.html":{"id":"faker.datatype.html","title":"Namespace: datatype","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: datatype faker. datatype Methods &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; uuid() uuid &lt;static&gt; uuid() uuid Namespace: datatype faker. datatype Methods &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; uuid() uuid &lt;static&gt; uuid() uuid × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.date.html":{"id":"faker.date.html","title":"Namespace: date","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: date faker. date Methods &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object Namespace: date faker. date Methods &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.finance.html":{"id":"faker.finance.html","title":"Namespace: finance","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: finance faker. finance Methods &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; accountName() accountName &lt;static&gt; accountName() accountName &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; bic() bic &lt;static&gt; bic() bic &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyName() currencyName &lt;static&gt; currencyName() currencyName &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; routingNumber() routingNumber &lt;static&gt; routingNumber() routingNumber &lt;static&gt; transactionDescription() description &lt;static&gt; transactionDescription() description &lt;static&gt; transactionType() transactionType &lt;static&gt; transactionType() transactionType Namespace: finance faker. finance Methods &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; accountName() accountName &lt;static&gt; accountName() accountName &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; bic() bic &lt;static&gt; bic() bic &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyName() currencyName &lt;static&gt; currencyName() currencyName &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; routingNumber() routingNumber &lt;static&gt; routingNumber() routingNumber &lt;static&gt; transactionDescription() description &lt;static&gt; transactionDescription() description &lt;static&gt; transactionType() transactionType &lt;static&gt; transactionType() transactionType × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.git.html":{"id":"faker.git.html","title":"Namespace: git","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: git faker. git Methods &lt;static&gt; branch() branch &lt;static&gt; branch() branch &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitSha() commitSha &lt;static&gt; commitSha() commitSha &lt;static&gt; shortSha() shortSha &lt;static&gt; shortSha() shortSha Namespace: git faker. git Methods &lt;static&gt; branch() branch &lt;static&gt; branch() branch &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitSha() commitSha &lt;static&gt; commitSha() commitSha &lt;static&gt; shortSha() shortSha &lt;static&gt; shortSha() shortSha × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.hacker.html":{"id":"faker.hacker.html","title":"Namespace: hacker","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: hacker faker. hacker Methods &lt;static&gt; abbreviation() abbreviation &lt;static&gt; abbreviation() abbreviation &lt;static&gt; adjective() adjective &lt;static&gt; adjective() adjective &lt;static&gt; ingverb() ingverb &lt;static&gt; ingverb() ingverb &lt;static&gt; noun() noun &lt;static&gt; noun() noun &lt;static&gt; phrase() phrase &lt;static&gt; phrase() phrase &lt;static&gt; verb() verb &lt;static&gt; verb() verb Namespace: hacker faker. hacker Methods &lt;static&gt; abbreviation() abbreviation &lt;static&gt; abbreviation() abbreviation &lt;static&gt; adjective() adjective &lt;static&gt; adjective() adjective &lt;static&gt; ingverb() ingverb &lt;static&gt; ingverb() ingverb &lt;static&gt; noun() noun &lt;static&gt; noun() noun &lt;static&gt; phrase() phrase &lt;static&gt; phrase() phrase &lt;static&gt; verb() verb &lt;static&gt; verb() verb × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.helpers.html":{"id":"faker.helpers.html","title":"Namespace: helpers","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: helpers faker. helpers Methods &lt;static&gt; contextualCard() contextualCard &lt;static&gt; contextualCard() contextualCard &lt;static&gt; createCard() createCard &lt;static&gt; createCard() createCard &lt;static&gt; createTransaction() createTransaction &lt;static&gt; createTransaction() createTransaction &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; userCard() userCard &lt;static&gt; userCard() userCard Namespace: helpers faker. helpers Methods &lt;static&gt; contextualCard() contextualCard &lt;static&gt; contextualCard() contextualCard &lt;static&gt; createCard() createCard &lt;static&gt; createCard() createCard &lt;static&gt; createTransaction() createTransaction &lt;static&gt; createTransaction() createTransaction &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; userCard() userCard &lt;static&gt; userCard() userCard × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.html":{"id":"faker.image.html","title":"Namespace: image","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: image faker. image Properties: Name Type Description lorempixel object faker.image.lorempixel unsplash object faker.image.unsplash unsplash object faker.image.lorempicsum Default Value: Default provider is unsplash image provider Namespaces lorempicsum lorempixel unsplash Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean Namespace: image faker. image Properties: Name Type Description lorempixel object faker.image.lorempixel unsplash object faker.image.unsplash unsplash object faker.image.lorempicsum Default Value: Default provider is unsplash image provider Namespaces lorempicsum lorempixel unsplash Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.lorempicsum.html":{"id":"faker.image.lorempicsum.html","title":"Namespace: lorempicsum","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorempicsum faker.image. lorempicsum Methods &lt;static&gt; avatar() avatar &lt;static&gt; image(width, height, grayscale, blur) search image from unsplash Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 &lt;static&gt; imageBlurred(width, height, blur) search blurred image from unsplash Parameters: Name Type Description width number height number blur number 1-10 &lt;static&gt; imageGrayscaled(width, height, grayscale) search grayscale image from unsplash Parameters: Name Type Description width number height number grayscale boolean &lt;static&gt; imageRandomSeeded(width, height, grayscale, blur, seed) search same random image from unsplash, based on a seed Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 seed string &lt;static&gt; imageUrl(width, height, grayscale, blur, seed) imageUrl Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 seed string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.lorempixel.html":{"id":"faker.image.lorempixel.html","title":"Namespace: lorempixel","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorempixel faker.image. lorempixel Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.unsplash.html":{"id":"faker.image.unsplash.html","title":"Namespace: unsplash","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: unsplash faker.image. unsplash Methods &lt;static&gt; avatar() avatar &lt;static&gt; buildings(width, height, keyword) buildings Parameters: Name Type Description width number height number keyword string &lt;static&gt; food(width, height, keyword) food Parameters: Name Type Description width number height number keyword string &lt;static&gt; image(width, height, keyword) search image from unsplash Parameters: Name Type Description width number height number keyword string &lt;static&gt; imageUrl(width, height, category, keyword) imageUrl Parameters: Name Type Description width number height number category string keyword string &lt;static&gt; nature(width, height, keyword) nature Parameters: Name Type Description width number height number keyword string &lt;static&gt; objects(width, height, keyword) objects Parameters: Name Type Description width number height number keyword string &lt;static&gt; people(width, height, keyword) people Parameters: Name Type Description width number height number keyword string &lt;static&gt; technology(width, height, keyword) technology Parameters: Name Type Description width number height number keyword string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.internet.html":{"id":"faker.internet.html","title":"Namespace: internet","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: internet faker. internet Methods &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; domainName() domainName &lt;static&gt; domainName() domainName &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainWord() domainWord &lt;static&gt; domainWord() domainWord &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; httpMethod() method &lt;static&gt; httpMethod() method &lt;static&gt; ip() ip &lt;static&gt; ip() ip &lt;static&gt; ipv6() ipv6 &lt;static&gt; ipv6() ipv6 &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; port() port &lt;static&gt; port() port &lt;static&gt; protocol() protocol &lt;static&gt; protocol() protocol &lt;static&gt; url() url &lt;static&gt; url() url &lt;static&gt; userAgent() userAgent &lt;static&gt; userAgent() userAgent &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string Namespace: internet faker. internet Methods &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; domainName() domainName &lt;static&gt; domainName() domainName &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainWord() domainWord &lt;static&gt; domainWord() domainWord &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; httpMethod() method &lt;static&gt; httpMethod() method &lt;static&gt; ip() ip &lt;static&gt; ip() ip &lt;static&gt; ipv6() ipv6 &lt;static&gt; ipv6() ipv6 &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; port() port &lt;static&gt; port() port &lt;static&gt; protocol() protocol &lt;static&gt; protocol() protocol &lt;static&gt; url() url &lt;static&gt; url() url &lt;static&gt; userAgent() userAgent &lt;static&gt; userAgent() userAgent &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.lorem.html":{"id":"faker.lorem.html","title":"Namespace: lorem","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorem faker. lorem Methods &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 Namespace: lorem faker. lorem Methods &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.music.html":{"id":"faker.music.html","title":"Namespace: music","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: music faker. music Methods &lt;static&gt; genre() genre &lt;static&gt; genre() genre Namespace: music faker. music Methods &lt;static&gt; genre() genre &lt;static&gt; genre() genre × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.name.html":{"id":"faker.name.html","title":"Namespace: name","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: name faker. name Methods &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; gender() gender &lt;static&gt; gender() gender &lt;static&gt; jobArea() jobArea &lt;static&gt; jobArea() jobArea &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobType() jobType &lt;static&gt; jobType() jobType &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; suffix() suffix &lt;static&gt; suffix() suffix &lt;static&gt; title() title &lt;static&gt; title() title Namespace: name faker. name Methods &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; gender() gender &lt;static&gt; gender() gender &lt;static&gt; jobArea() jobArea &lt;static&gt; jobArea() jobArea &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobType() jobType &lt;static&gt; jobType() jobType &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; suffix() suffix &lt;static&gt; suffix() suffix &lt;static&gt; title() title &lt;static&gt; title() title × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.phone.html":{"id":"faker.phone.html","title":"Namespace: phone","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: phone faker. phone Methods &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string Namespace: phone faker. phone Methods &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.random.html":{"id":"faker.random.html","title":"Namespace: random","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: random faker. random Methods &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; image() locale &lt;static&gt; image() locale &lt;static&gt; locale() locale &lt;static&gt; locale() locale &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 Namespace: random faker. random Methods &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; image() locale &lt;static&gt; image() locale &lt;static&gt; locale() locale &lt;static&gt; locale() locale &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.system.html":{"id":"faker.system.html","title":"Namespace: system","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: system faker. system Methods &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; directoryPath() returns directory path &lt;static&gt; directoryPath() returns directory path &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileName() generates a file name &lt;static&gt; fileName() generates a file name &lt;static&gt; filePath() returns file path &lt;static&gt; filePath() returns file path &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; mimeType() mimeType &lt;static&gt; mimeType() mimeType &lt;static&gt; semver() semver &lt;static&gt; semver() semver Namespace: system faker. system Methods &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; directoryPath() returns directory path &lt;static&gt; directoryPath() returns directory path &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileName() generates a file name &lt;static&gt; fileName() generates a file name &lt;static&gt; filePath() returns file path &lt;static&gt; filePath() returns file path &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; mimeType() mimeType &lt;static&gt; mimeType() mimeType &lt;static&gt; semver() semver &lt;static&gt; semver() semver × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.time.html":{"id":"faker.time.html","title":"Namespace: time","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: time faker. time Methods &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) Namespace: time faker. time Methods &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.unique.html":{"id":"faker.unique.html","title":"Namespace: unique","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: unique faker. unique Namespace: unique faker. unique × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.vehicle.html":{"id":"faker.vehicle.html","title":"Namespace: vehicle","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: vehicle faker. vehicle Methods &lt;static&gt; bicycle() bicycle &lt;static&gt; bicycle() bicycle &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; fuel() fuel &lt;static&gt; fuel() fuel &lt;static&gt; manufacturer() manufacturer &lt;static&gt; manufacturer() manufacturer &lt;static&gt; model() model &lt;static&gt; model() model &lt;static&gt; type() type &lt;static&gt; type() type &lt;static&gt; vehicle() vehicle &lt;static&gt; vehicle() vehicle &lt;static&gt; vin() vin &lt;static&gt; vin() vin &lt;static&gt; vrm() vrm &lt;static&gt; vrm() vrm Namespace: vehicle faker. vehicle Methods &lt;static&gt; bicycle() bicycle &lt;static&gt; bicycle() bicycle &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; fuel() fuel &lt;static&gt; fuel() fuel &lt;static&gt; manufacturer() manufacturer &lt;static&gt; manufacturer() manufacturer &lt;static&gt; model() model &lt;static&gt; model() model &lt;static&gt; type() type &lt;static&gt; type() type &lt;static&gt; vehicle() vehicle &lt;static&gt; vehicle() vehicle &lt;static&gt; vin() vin &lt;static&gt; vin() vin &lt;static&gt; vrm() vrm &lt;static&gt; vrm() vrm × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "}}
    </script>

    <script type="text/javascript">
        $(document).ready(function() {
            Searcher.init();
        });

        $(window).on("message", function(msg) {
            var msgData = msg.originalEvent.data;

            if (msgData.msgid != "docstrap.quicksearch.start") {
                return;
            }

            var results = Searcher.search(msgData.searchTerms);

            window.parent.postMessage({"results": results, "msgid": "docstrap.quicksearch.done"}, "*");
        });
    </script>
</body>
</html>