{
  "name": "Extract Index",
  "id": "ide:540801bb-d19b-4611-9f16-8229b4cd9653",
  "module": {
    "kind": "compute",
    "id": "ide:540801bb-d19b-4611-9f16-8229b4cd9653",
    "name": "Extract Index",
    "inputs": [
      {
        "id": "array",
        "label": "array",
        "type": "array[object]"
      },
      {
        "id": "index",
        "label": "index",
        "type": "number"
      }
    ],
    "outputs": [
      {
        "id": "out",
        "label": "out",
        "type": "object"
      }
    ],
    "compute": "(inputs)=>{\n  const res = {out: inputs.array[inputs.index]}\n  return res\n}"
  }
}
