xk6-faker
    Preparing search index...

    Interface Emoji

    Generator to generate emoji related entries.

    interface Emoji {
        emoji(): string;
        emojiAlias(): string;
        emojiCategory(): string;
        emojiDescription(): string;
        emojiTag(): string;
    }
    Index

    Methods

    • Digital symbol expressing feelings or ideas in text messages and online chats.

      Returns string

      a random emoji

      import { Faker } from "k6/x/faker"

      let faker = new Faker(11)

      export default function () {
      console.log(faker.emoji.emoji())
      }

      Output (formatted as JSON value)

      "🐮"
      
    • Alternative name or keyword used to represent a specific emoji in text or code.

      Returns string

      a random emoji alias

      import { Faker } from "k6/x/faker"

      let faker = new Faker(11)

      export default function () {
      console.log(faker.emoji.emojiAlias())
      }

      Output (formatted as JSON value)

      "slovakia"
      
    • Group or classification of emojis based on their common theme or use, like 'smileys' or 'animals'.

      Returns string

      a random emoji category

      import { Faker } from "k6/x/faker"

      let faker = new Faker(11)

      export default function () {
      console.log(faker.emoji.emojiCategory())
      }

      Output (formatted as JSON value)

      "Smileys & Emotion"
      
    • Brief explanation of the meaning or emotion conveyed by an emoji.

      Returns string

      a random emoji description

      import { Faker } from "k6/x/faker"

      let faker = new Faker(11)

      export default function () {
      console.log(faker.emoji.emojiDescription())
      }

      Output (formatted as JSON value)

      "disguised face"
      
    • Label or keyword associated with an emoji to categorize or search for it easily.

      Returns string

      a random emoji tag

      import { Faker } from "k6/x/faker"

      let faker = new Faker(11)

      export default function () {
      console.log(faker.emoji.emojiTag())
      }

      Output (formatted as JSON value)

      "lick"