Getting started Community Training Tutorials Documentation APIs, AI & Tools
%dw 2.0
import divideBy from dw::core::Objects
output application/json
---
{ "divideBy" : {"a": 1, "b" : true, "a" : 2, "b" : false, "c" : 3} divideBy 2 }
You're viewing an older version of the documentation. You can switch to the latest version or use the version selector in the left navigation.
Breaks up an object into sub-objects that contain the specified number of key-value pairs.
If there are fewer key-value pairs in an object than the specified number, the function will fill the object with those pairs. If there are more pairs, the function will fill another object with the extra pairs.
| Name | Description |
|---|---|
|
Key-value pairs in the source object. |
|
The number of key-value pairs allowed in an object. |