Skip to content

Company

Module to generate company related entries.

Overview

To generate a random company name, use name(). This is localized in many locales.

To generate jargon-filled company catchphrases and buzzwords, use catchPhrase() or buzzPhrase().

buzzAdjective

Returns a random buzz adjective that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
function buzzAdjective(): string;
faker.company.buzzAdjective() // 'one-to-one'

buzzNoun

Returns a random buzz noun that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
function buzzNoun(): string;
faker.company.buzzNoun() // 'paradigms'

buzzPhrase

Generates a random buzz phrase that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
function buzzPhrase(): string;
faker.company.buzzPhrase() // 'cultivate synergistic e-markets'

buzzVerb

Returns a random buzz verb that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
function buzzVerb(): string;
faker.company.buzzVerb() // 'empower'

catchPhrase

Generates a random catch phrase that can be displayed to an end user.

Available since v2.0.1

Returns: string

ts
function catchPhrase(): string;
faker.company.catchPhrase() // 'Upgradable systematic flexibility'

catchPhraseAdjective

Returns a random catch phrase adjective that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
function catchPhraseAdjective(): string;
faker.company.catchPhraseAdjective() // 'Multi-tiered'

catchPhraseDescriptor

Returns a random catch phrase descriptor that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
function catchPhraseDescriptor(): string;
faker.company.catchPhraseDescriptor() // 'composite'

catchPhraseNoun

Returns a random catch phrase noun that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
function catchPhraseNoun(): string;
faker.company.catchPhraseNoun() // 'leverage'

name

Generates a random company name.

Available since v7.4.0

Returns: string

ts
function name(): string;
faker.company.name() // 'Zieme, Hauck and McClure'

Released under the MIT License.