(rangeStart, rangeEnd, fullLength)
| 5874 | } |
| 5875 | __name(simpleRangeHeaderValue, "simpleRangeHeaderValue"); |
| 5876 | function buildContentRange(rangeStart, rangeEnd, fullLength) { |
| 5877 | let contentRange = "bytes "; |
| 5878 | contentRange += isomorphicEncode(`${rangeStart}`); |
| 5879 | contentRange += "-"; |
| 5880 | contentRange += isomorphicEncode(`${rangeEnd}`); |
| 5881 | contentRange += "/"; |
| 5882 | contentRange += isomorphicEncode(`${fullLength}`); |
| 5883 | return contentRange; |
| 5884 | } |
| 5885 | __name(buildContentRange, "buildContentRange"); |
| 5886 | var InflateStream = class extends Transform { |
| 5887 | static { |
no test coverage detected