Loading problem…
Implement chunk - split an array into contiguous sub-arrays of a fixed size.
items and a chunk size size.size elements.items is empty, return [].size <= 0, return [].size is larger than the input length, return one chunk containing all elements.