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

Function chunkArray

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

Source from the content-addressed store, hash-verified

652// slice is the remainder (length === size when items.length is a multiple of
653// size, otherwise items.length mod size).
654function chunkArray(items, size) {
655 const chunks = [];
656 for (let i = 0; i < items.length; i += size) {
657 chunks.push(items.slice(i, i + size));
658 }
659 return chunks;
660}
661
662function setStatsOutputs(out, stats, batchCounters, batchSize) {
663 out("comments_total", String(stats.total));

Callers 2

runPostReviewCommentsFunction · 0.85
testChunkArrayFunction · 0.85

Calls

no outgoing calls

Tested by 1

testChunkArrayFunction · 0.68