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.
@@ -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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-http",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "An implementation of Braid-HTTP for Node.js and Browsers",
5
5
  "scripts": {
6
6
  "test": "node test/server.js"