()
| 132 | // Debugging |
| 133 | Request.debug = process.env.NODE_DEBUG && /\brequest\b/.test(process.env.NODE_DEBUG) |
| 134 | function debug () { |
| 135 | if (Request.debug) { |
| 136 | console.error('REQUEST %s', util.format.apply(util, arguments)) |
| 137 | } |
| 138 | } |
| 139 | Request.prototype.debug = debug |
| 140 | |
| 141 | Request.prototype.init = function (options) { |
no outgoing calls
no test coverage detected
searching dependent graphs…