Files
2024-12-23 13:10:09 -05:00

6 lines
136 B
TypeScript

const fixEndChunkLength = (length: number) => {
return Math.floor((length - 1) / 16) * 16 + 16;
};
export default fixEndChunkLength;