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

ldap-ts-client

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldap-ts-client - npm Package Compare versions

Comparing version 0.9.1-beta6 to 0.9.1-beta7

11

dist/index.js

@@ -17,6 +17,3 @@ "use strict";

this.baseDN = config.baseDN;
this.client = ldapjs_1.default.createClient({
url: this.config.ldapServerUrl,
log: this.config.logger,
});
this.client = ldapjs_1.default.createClient(Object.assign(Object.assign({}, this.config), { url: this.config.ldapServerUrl, log: this.config.logger }));
}

@@ -35,7 +32,5 @@ /** @return a connected ldap client that is useful for use flexibility of [ldap.js](http://ldapjs.org/) directly. */

});
console.log(`File: index.ts,`, `Line: 109 => destroy success!`);
}
this.client = ldapjs_1.default.createClient({
url: this.config.ldapServerUrl,
log: this.config.logger,
});
this.client = ldapjs_1.default.createClient(Object.assign(Object.assign({}, this.config), { url: this.config.ldapServerUrl, log: this.config.logger }));
this.client.on("connectError", (err) => {

@@ -42,0 +37,0 @@ console.log(`File: index.ts,`, `Line: 118 => `, err);

{
"name": "ldap-ts-client",
"version": "0.9.1-beta6",
"version": "0.9.1-beta7",
"description": "Type-safe LDAP client written in typescript",

@@ -5,0 +5,0 @@ "repository": {

@@ -85,2 +85,3 @@ import ldap, { SearchOptions, Control, SearchEntryObject } from "ldapjs";

this.client = ldap.createClient({
...this.config,
url: this.config.ldapServerUrl,

@@ -110,5 +111,7 @@ log: this.config.logger,

});
console.log(`File: index.ts,`, `Line: 109 => destroy success!`);
}
this.client = ldap.createClient({
...this.config,
url: this.config.ldapServerUrl,

@@ -115,0 +118,0 @@ log: this.config.logger,

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