New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bower-registry-client

Package Overview
Dependencies
Maintainers
6
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bower-registry-client - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

4

lib/unregister.js

@@ -34,3 +34,3 @@ var parseUrl = require('url').parse;

if (response.statusCode === 403) {
return callback(createError('Not authorized', 'EFORBIDDEN'));
return callback(createError(response.body, 'EFORBIDDEN'));
}

@@ -40,3 +40,3 @@

if (response.statusCode !== 204) {
return callback(createError('Unknown error: ' + response.statusCode + ', ' + response.body, 'EUNKNOWN'));
return callback(createError(response.body, 'EUNKNOWN'));
}

@@ -43,0 +43,0 @@

{
"name": "bower-registry-client",
"version": "0.2.3",
"version": "0.2.4",
"description": "Provides easy interaction with the Bower registry",

@@ -5,0 +5,0 @@ "author": "Twitter",

@@ -200,2 +200,3 @@ var RegistryClient = require('../Client');

it('should return no result', function (next) {
this.timeout(10000);
this.registry.lookup('', function (err, entry) {

@@ -202,0 +203,0 @@ expect(err).to.not.be.ok();

Sorry, the diff of this file is not supported yet

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