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

mqtts

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mqtts - npm Package Compare versions

Comparing version 1.4.3 to 1.4.4

2

dist/mqtt.client.js

@@ -26,3 +26,3 @@ "use strict";

this.executePeriodically = (ms, cb) => setInterval(cb, ms);
this.stopExecuting = clearInterval;
this.stopExecuting = ref => clearInterval(ref);
this.executeDelayed = (ms, cb) => setTimeout(cb, ms);

@@ -29,0 +29,0 @@ this.flowCounter = mqtt_utilities_1.createFlowCounter();

@@ -30,3 +30,3 @@ import { ConnectRequestOptions } from './packets';

export declare type ExecuteDelayed = (timeInMs: number, action: () => void) => TimerRef;
export declare type StopExecuting = (ref: any) => void;
export declare type StopExecuting = (ref: TimerRef) => void;
export declare type AsyncLike<TIn, TOut> = (data: TIn) => TOut | PromiseLike<TOut>;

@@ -33,0 +33,0 @@ export interface ListenerInfo<TIn, TOut> {

{
"name": "mqtts",
"version": "1.4.3",
"version": "1.4.4",
"description": "MQTT client in Typescript",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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