Operations (sample payloads)

Main operations

Call operation

Call any operation in Lodash 4.1.0 by name Sample Input

\{
    "operation_name": "chunk",
    "parameters": [
        [
            "a",
            "b",
            "c",
            "d",
            "e",
            "f"
        ],
        2
    ]
\}

Sample Output

\{
    "result": [
        [
            "a",
            "b"
        ],
        [
            "c",
            "d"
        ],
        [
            "e",
            "f"
        ]
    ]
\}

Was this page helpful?