smtp-server-as-promised
Advanced tools
Comparing version 3.2.0 to 3.3.0
# Changelog | ||
## v3.3.0 2018-02-13 | ||
* Accept `0` as a port number. | ||
## v3.2.0 2018-02-13 | ||
@@ -4,0 +8,0 @@ |
@@ -74,3 +74,3 @@ 'use strict' | ||
// node < 7 doesn't accept undefined as port number | ||
this.server.listen(port || this.port || 0, this.host, this.backlog) | ||
this.server.listen(Number.isInteger(port) ? port : Number.isInteger(this.port) ? this.port : 0, this.host, this.backlog) | ||
}) | ||
@@ -77,0 +77,0 @@ } |
{ | ||
"name": "smtp-server-as-promised", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"description": "Promisify smtp-server module", | ||
@@ -5,0 +5,0 @@ "main": "lib/smtp-server-as-promised.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14402