Socket
Socket
Sign inDemoInstall

follow

Package Overview
Dependencies
21
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.10.0 to 0.10.1

9

lib/feed.js

@@ -50,3 +50,3 @@ // Core routines for event emitters

self.headers = {};
self.request = {}; // Extra options for potentially future versions of request. The caller can supply them.
self.request = opts.request || {} // Extra options for potentially future versions of request. The caller can supply them.

@@ -112,3 +112,8 @@ self.since = 0;

var req = request({'uri':self.db, 'headers':headers}, db_response)
var req = {'uri':self.db, 'headers':headers}
Object.keys(self.request).forEach(function(key) {
req[key] = self.request[key];
})
req = request(req, db_response)
self.emit('confirm_request', req)

@@ -115,0 +120,0 @@

@@ -49,2 +49,4 @@ // Copyright 2011 Iris Couch

function noop () {}
exports.log4js = { 'getLogger': getLogger }
{ "name": "follow"
, "version": "0.10.0"
, "version": "0.10.1"
, "author": { "name": "Jason Smith"

@@ -4,0 +4,0 @@ , "email": "jhs@iriscouch.com" }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc