ArrayOfObjectsFilterKeys Op

ArrayOfObjectsFilterKeys

Remove key-value pairs from objects in an array of objects


Use this op on an array of objects to "slim out" objects.

var obj = { animal: "dog", humanoid: "arnold from terminator 2", lunch: "pasta" };

// specify keys humanoid & lunch, the resulting object becomes
obj = { humanoid: "arnold from terminator 2", lunch: "pasta" }

// inverting the filter, the resulting object becomes
obj = { animal: "dog" }

Full Name
  • Ops.Array.Objects.ArrayOfObjectsFilterKeys
Visibility
  • Core Op - visible for everyone
License
  • MIT
AuthorCreated
  • Apr 14, 2020 at 14:22
githubMaintained by Team


INPUT PORTS


Array (Array)

array of objects input

Keys (String)

keys to keep in the objects

Seperator (String)

the character to seperate the keys

Invert Filter (Number: boolean)

inverts the operation, drops all specified keys

OUTPUT PORTS


Array Out (Array)

the resulting array of objects


Changelog

Patches using ArrayOfObjectsFilterKeys

  • Examples
  • Public
  • My Patches