Skip to main content
Version: Next

Get Map Entries

Transforms a map to a list of elements

Description

Transforms a map (Map or Plain JS Object) to a list of Map Entries objects.

Example:

  • inputs

    • Map = { "user": "barney", "age": 36, "active": true }
  • outputs

    • List = ["user": "barney", "age": 36, "active": true ]

Inputs

  • Control Flow (Control Flow)
  • map (Map): Supports Map and plain JS Object

Outputs

  • Control Flow (Control Flow)
  • list (List): The list of Map Entries