UNPKG

js-uploader

Version:
19 lines 472 B
import { StatusCode } from '../../interface'; export var chunkFactory = function (id, index, start, end, size) { var chunk = { id: id, start: start, end: end, index: index, data: null, hash: '', uploaded: 0, size: size || end - start, progress: 0, status: StatusCode.Pause, response: {}, extraInfo: {}, }; return chunk; }; //# sourceMappingURL=chunk-factory.js.map