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

nyks

Package Overview
Dependencies
Maintainers
3
Versions
251
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nyks - npm Package Compare versions

Comparing version 5.11.7 to 5.11.8

9

http/request.js

@@ -60,4 +60,9 @@ "use strict";

var req = transport.request(query, function(res) {
if(!(res.statusCode >= 200 && res.statusCode < 300))
return chain({err : `Invalid status code '${res.statusCode}' for '${req.path}'`, res});
if(!(res.statusCode >= 200 && res.statusCode < 300)) {
let message = `Invalid status code '${res.statusCode}' for '${req.path}'`;
let error = new Error(message);
error.err = message;
error.res = res;
return chain(error);
}
chain(null, res);

@@ -64,0 +69,0 @@ });

{
"name": "nyks",
"version": "5.11.7",
"version": "5.11.8",
"description": "nodejs exupery style",

@@ -5,0 +5,0 @@ "keywords": [

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