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.2.5 to 0.2.6

6

lib/dn.js

@@ -216,3 +216,3 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved.

DN.prototype.childOf = function(dn) {
if (!(dn instanceof DN))
if (typeof(dn) !== 'object')
dn = parse(dn);

@@ -240,3 +240,3 @@

DN.prototype.parentOf = function(dn) {
if (!(dn instanceof DN))
if (typeof(dn) !== 'object')
dn = parse(dn);

@@ -264,3 +264,3 @@

DN.prototype.equals = function(dn) {
if (!(dn instanceof DN))
if (typeof(dn) !== 'object')
dn = parse(dn);

@@ -267,0 +267,0 @@

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

"description": "LDAP client and server APIs",
"version": "0.2.5",
"version": "0.2.6",
"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