company
suffixes​
Description​
Method that generates random company suffixes
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <Array>
Usage​
- Without passing parameters
- code
console.log(pure.company.suffixes());
- result
[ 'Pty Ltd', 'Ltd', 'CC' ]
companyName​
Description​
Method that generates random company name. If you want a specific format you can pass as a parameter considering mustache templates like Fake.
Parameters​
Name | Type | Description |
---|---|---|
format | <String> | You can define what format to use. If the parameter passed isn't valid it will randomize from internal list |
Returns​
- <String>
Usage​
Without passing parameters
- code
console.log(pure.company.companyName());
- result
'Streich LLC'
Describing that i want the company name to respect this template
{{name.lastName}}-{{random.number}} {{company.companySuffix}}
- code
console.log(pure.company.companyName('{{name.lastName}}-{{random.number}} {{company.companySuffix}}'));
- result
'Grimes-20458 LLC'
companySuffix​
Description​
Method that generates random company suffix
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.companySuffix());
- result
'Group'
companyPrefix​
Description​
Method that generates random company prefix
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
pure.setLocale('az')
console.log(pure.company.companyPrefix());- result
'QSC'
catchPhrase​
Description​
Method that generates random company suffix
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.catchPhrase());
- result
'Reduced discrete core'
catchPhraseAdjective​
Description​
Method that generates random catch phrase adjectives.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.catchPhraseAdjective());
- result
'Intuitive'
catchPhraseDescriptor​
Description​
Method that generates random catch phrase descriptor.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.catchPhraseDescriptor());
- result
'next generation'
catchPhraseNoun​
Description​
Method that generates random catch phrase noun.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.catchPhraseNoun());
- result
'benchmark'
bs​
Description​
Method that generates random company BS.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.bs());
- result
'enable front-end methodologies'
bsAdjective​
Description​
Method that generates random BS adjective.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.bsAdjective());
- result
'extensible'
bsBuzz​
Description​
Method that generates random BS buzz.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.bsBuzz());
- result
'repurpose'
bsNoun​
Description​
Method that generates random BS noun.
Parameters​
Name | Type | Description |
---|---|---|
N/A | N/A | This method doesn't receive any parameters |
Returns​
- <String>
Usage​
- Without passing parameters
- code
console.log(pure.company.bsNoun());
- result
'deliverables'