mirror of
https://github.com/zadam/trilium.git
synced 2025-10-31 18:36:30 +01:00
Remove console.log
This commit is contained in:
@@ -12,7 +12,6 @@ export function parseRangeHeader(range: string, totalSize: number, logger: Logge
|
|||||||
}
|
}
|
||||||
|
|
||||||
const splitRange = range.split(rangeRegEx);
|
const splitRange = range.split(rangeRegEx);
|
||||||
console.log("Parsed range is: ", JSON.stringify(splitRange));
|
|
||||||
const [, startValue, endValue] = splitRange;
|
const [, startValue, endValue] = splitRange;
|
||||||
let start = Number.parseInt(startValue);
|
let start = Number.parseInt(startValue);
|
||||||
let end = Number.parseInt(endValue);
|
let end = Number.parseInt(endValue);
|
||||||
|
|||||||
Reference in New Issue
Block a user