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

mailgun-js

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailgun-js - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

.npmignore

1

lib/request.js

@@ -229,2 +229,3 @@ var https = require('https');

error = new Error(msg);
error.statusCode = res.statusCode;
}

@@ -231,0 +232,0 @@

2

package.json

@@ -5,3 +5,3 @@ {

"keywords": ["email", "mailgun"],
"version": "0.6.3",
"version": "0.6.4",
"homepage": "https://github.com/1lobby/mailgun-js",

@@ -8,0 +8,0 @@ "license": "MIT",

@@ -1101,3 +1101,17 @@ var auth = require('./auth.json');

});
},
//
// ERROR
//
'server error should have status code': function (done) {
mailgun.domains('testdomain@test123.com').info(function (err, body) {
assert.ok(err);
assert.ok(err.statusCode);
assert.equal(404, err.statusCode);
done();
});
}
};
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