Files

13 lines
255 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
const chunk = parseInt(process.env.TEST_CHUNK) || 1000;
let arr = [];
function runAllocation() {
const str = JSON.stringify(process.config).slice(0, chunk);
arr.push(str);
setImmediate(runAllocation);
}
setImmediate(runAllocation);