Files
myDrive/backend/services/chunk-service/utils/fixEndChunkLength.ts
T
2024-08-10 01:54:22 -04:00

6 lines
135 B
TypeScript

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