braid-http 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/braid-http-server.js +0 -1
- package/package.json +1 -1
package/braid-http-server.js
CHANGED
|
@@ -172,7 +172,6 @@ function parse_patches (req, cb) {
|
|
|
172
172
|
function parse_content_range (range_string) {
|
|
173
173
|
console.log('range string is', range_string)
|
|
174
174
|
var match = range_string.match(/(\S+)( (.*))?/)
|
|
175
|
-
console.log('##### match is', match)
|
|
176
175
|
if (!match) throw 'Cannot parse Content-Range in ' + string
|
|
177
176
|
var [unit, range] = [match[1], match[3]]
|
|
178
177
|
return [unit, range]
|