πŸš€ Big News:Socket Has Acquired Secure Annex.Learn More β†’
Socket
Book a DemoSign in
Socket

ldapts

Package Overview
Dependencies
Maintainers
1
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapts - npm Package Compare versions

Comparing version
8.1.1
to
8.1.2
+1
-3
package.json
{
"name": "ldapts",
"version": "8.1.1",
"version": "8.1.2",
"description": "LDAP client",

@@ -72,3 +72,2 @@ "main": "./dist/index.cjs",

"dependencies": {
"debug": "4.4.3",
"strict-event-emitter-types": "2.0.0",

@@ -86,3 +85,2 @@ "whatwg-url": "15.1.0"

"@types/chai-as-promised": "8.0.2",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",

@@ -89,0 +87,0 @@ "@types/node": ">=20",

import * as crypto from 'node:crypto';
import * as net from 'node:net';
import * as tls from 'node:tls';
import { debuglog } from 'node:util';
import debug from 'debug';
import { parseURL } from 'whatwg-url';

@@ -42,3 +42,3 @@

const MAX_MESSAGE_ID = 2 ** 31 - 1;
const logDebug = debug('ldapts');
const logDebug = debuglog('ldapts');

@@ -218,3 +218,5 @@ type SocketWithId = { id?: string } & (net.Socket | tls.TLSSocket);

logDebug(err.stack);
if (err.stack) {
logDebug(err.stack);
}
});

@@ -221,0 +223,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display