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

imapflow

Package Overview
Dependencies
Maintainers
1
Versions
167
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imapflow - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

4

CHANGELOG.md
# CHANGELOG
- 1.0.14 - 2020-02-13
- Added new property `idling`
- v1.0.13 - 2020-02-12

@@ -4,0 +8,0 @@

@@ -17,2 +17,3 @@ 'use strict';

connection.log.debug({ src: 'c', msg: `initiated IDLE` });
connection.idling = true;
};

@@ -24,2 +25,3 @@

connection.log.debug({ src: 'c', msg: `breaking IDLE` });
connection.idling = false;
};

@@ -52,2 +54,3 @@

connection.log.debug({ src: 'c', msg: `breaking NOOP loop` });
connection.idling = false;
resolve();

@@ -76,4 +79,5 @@ };

connection.log.debug({ src: 'c', msg: `initiated NOOP loop` });
connection.idling = true;
runLoop();
});
};

@@ -75,2 +75,7 @@ /// <reference types="node" />

/**
* Is current mailbox idling (`true`) or not (`false`)
* @type {Boolean}
*/
idling: boolean;
/**
* Initiates a connection against IMAP server. Throws if anything goes wrong. This is something you have to call before you can run any IMAP commands

@@ -77,0 +82,0 @@ *

2

package.json
{
"name": "imapflow",
"version": "1.0.13",
"version": "1.0.14",
"description": "IMAP Client for Node",

@@ -5,0 +5,0 @@ "main": "./lib/imap-flow.js",

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