ComfyUI Node

_.each

iterates through each item of an object :Param: iteratee iterator function underscore.js: Iterates over a list of elements, yielding each in turn to an iteratee function. The iteratee is bound to the context object, if one is passed. Each invocation of iteratee is called with three arguments: (element, index, list). If list is a JavaScript object, iteratee's arguments will be (value, key, list). Returns the list for chaining.

By sfinktah·Created 12 months ago·Updated 9 months ago· 6
_.each
  • list_or_dict
  • *
Categoryovum/underscore

Inputs (1)

NameTypeDefaultDescription
list_or_dictopt*Primary input object (expected collection). You can still pass any JSON-serializable value. Also accepts _.CHAIN to continue chaining.

Outputs (1)

NameTypeDescription
**