Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

emailjs-imap-client

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emailjs-imap-client - npm Package Compare versions

Comparing version 3.0.3 to 3.0.4

2

package.json
{
"name": "emailjs-imap-client",
"version": "3.0.3",
"version": "3.0.4",
"homepage": "https://github.com/emailjs/emailjs-imap-client",

@@ -5,0 +5,0 @@ "description": "JavaScript IMAP client",

@@ -67,3 +67,2 @@ import { propOr } from 'ramda'

this.timeoutSocketMultiplier = TIMEOUT_SOCKET_MULTIPLIER
this.onDataTimeout = this.timeoutSocketLowerBound + Math.floor(4096 * this.timeoutSocketMultiplier)

@@ -403,3 +402,4 @@ this.options = options

clearTimeout(this._socketTimeoutTimer) // reset the timeout on each data packet
this._socketTimeoutTimer = setTimeout(() => this._onError(new Error(' Socket timed out!')), this.ON_DATA_TIMEOUT)
const timeout = this.timeoutSocketLowerBound + Math.floor(4096 * this.timeoutSocketMultiplier) // max packet size is 4096 bytes
this._socketTimeoutTimer = setTimeout(() => this._onError(new Error(' Socket timed out!')), timeout)

@@ -406,0 +406,0 @@ this._incomingBuffers.push(new Uint8Array(evt.data)) // append to the incoming buffer

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc