MCPcopy Create free account
hub / github.com/alibaba/open-code-review / chunkArray

Function chunkArray

scripts/github-actions/post-review-comments.js:761–767  ·  view source on GitHub ↗
(items, size)

Source from the content-addressed store, hash-verified

759// slice is the remainder (length === size when items.length is a multiple of
760// size, otherwise items.length mod size).
761function chunkArray(items, size) {
762 const chunks = [];
763 for (let i = 0; i < items.length; i += size) {
764 chunks.push(items.slice(i, i + size));
765 }
766 return chunks;
767}
768
769function setStatsOutputs(out, stats, batchCounters, batchSize) {
770 out("comments_total", String(stats.total));

Callers 2

runPostReviewCommentsFunction · 0.85
testChunkArrayFunction · 0.85

Calls

no outgoing calls

Tested by 1

testChunkArrayFunction · 0.68