lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
25 lines (24 loc) • 652 B
JavaScript
/**
* Split a message into chunks of 50k characters.
* @param input The message to split.
* @returns The message chunks.
*/
export function splitMessageToChunks(input) {
const id = Math.random().toString();
const json = JSON.stringify(input);
// split string into 50k chunks.
const parts = [];
const partSize = 50000;
for (let i = 0; i < json.length; i += partSize) {
parts.push(json.substring(i, i + partSize));
}
if (!parts)
return [];
const fragments = parts.map((part, index) => ({
id,
index,
count: parts?.length,
data: part,
}));
return fragments;
}