Socket
Socket
Sign inDemoInstall

ldapjs

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapjs - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

8

lib/messages/compare_response.js

@@ -27,8 +27,8 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved.

CompareResponse.prototype.end = function(matches) {
var status = 0x06; // Compare true
if (typeof(matches) === 'number') {
status = matches;
} else if (typeof(matches) === 'boolean') {
var status = 0x06;
if (typeof(matches) === 'boolean') {
if (!matches)
status = 0x05; // Compare false
} else {
status = matches;
}

@@ -35,0 +35,0 @@

@@ -6,3 +6,3 @@ {

"description": "LDAP client and server APIs",
"version": "0.1.3",
"version": "0.1.4",
"repository": {

@@ -9,0 +9,0 @@ "type": "git",

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