Remove console.log

This commit is contained in:
SukantGujar 2019-03-12 18:29:13 +05:30
parent 0e03c8348a
commit 3b1ba655cc

View File

@ -12,7 +12,6 @@ export function parseRangeHeader(range: string, totalSize: number, logger: Logge
}
const splitRange = range.split(rangeRegEx);
console.log("Parsed range is: ", JSON.stringify(splitRange));
const [, startValue, endValue] = splitRange;
let start = Number.parseInt(startValue);
let end = Number.parseInt(endValue);