Skip to main content

company

suffixes​

Description​

Method that generates random company suffixes

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <Array>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.suffixes());
    1. 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​

NameTypeDescription
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​

  1. Without passing parameters

    1. code
    console.log(pure.company.companyName());
    1. result
    'Streich LLC'
  2. Describing that i want the company name to respect this template {{name.lastName}}-{{random.number}} {{company.companySuffix}}

    1. code
    console.log(pure.company.companyName('{{name.lastName}}-{{random.number}} {{company.companySuffix}}'));
    1. result
    'Grimes-20458 LLC'

companySuffix​

Description​

Method that generates random company suffix

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.companySuffix());
    1. result
    'Group'

companyPrefix​

Description​

Method that generates random company prefix

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    pure.setLocale('az')
    console.log(pure.company.companyPrefix());
    1. result
    'QSC'

catchPhrase​

Description​

Method that generates random company suffix

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.catchPhrase());
    1. result
    'Reduced discrete core'

catchPhraseAdjective​

Description​

Method that generates random catch phrase adjectives.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.catchPhraseAdjective());
    1. result
    'Intuitive'

catchPhraseDescriptor​

Description​

Method that generates random catch phrase descriptor.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.catchPhraseDescriptor());
    1. result
    'next generation'

catchPhraseNoun​

Description​

Method that generates random catch phrase noun.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.catchPhraseNoun());
    1. result
    'benchmark'

bs​

Description​

Method that generates random company BS.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.bs());
    1. result
    'enable front-end methodologies'

bsAdjective​

Description​

Method that generates random BS adjective.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.bsAdjective());
    1. result
    'extensible'

bsBuzz​

Description​

Method that generates random BS buzz.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.bsBuzz());
    1. result
    'repurpose'

bsNoun​

Description​

Method that generates random BS noun.

Parameters​

NameTypeDescription
N/AN/AThis method doesn't receive any parameters

Returns​

  • <String>

Usage​

  1. Without passing parameters
    1. code
    console.log(pure.company.bsNoun());
    1. result
    'deliverables'