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

@fluent-org/logger

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluent-org/logger - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

4

build/src/client.js

@@ -192,3 +192,5 @@ "use strict";

this.emitQueue.add(emitPromise);
emitPromise.finally(() => this.emitQueue.delete(emitPromise));
emitPromise
.finally(() => this.emitQueue.delete(emitPromise))
.catch(() => { });
}

@@ -195,0 +197,0 @@ return emitPromise;

@@ -13,3 +13,8 @@ "use strict";

]);
racePromise.finally(() => (timeoutId ? clearTimeout(timeoutId) : undefined));
racePromise
.finally(() => {
if (timeoutId)
clearTimeout(timeoutId);
})
.catch(() => { });
return racePromise;

@@ -16,0 +21,0 @@ };

{
"name": "@fluent-org/logger",
"version": "1.0.5",
"version": "1.0.6",
"description": "A node fluent protocol compatible logger",

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

@@ -476,3 +476,5 @@ import {

this.emitQueue.add(emitPromise);
emitPromise.finally(() => this.emitQueue.delete(emitPromise));
emitPromise
.finally(() => this.emitQueue.delete(emitPromise))
.catch(() => {});
}

@@ -479,0 +481,0 @@ return emitPromise;

@@ -16,3 +16,7 @@ export const awaitAtMost = <T>(

]);
racePromise.finally(() => (timeoutId ? clearTimeout(timeoutId) : undefined));
racePromise
.finally(() => {
if (timeoutId) clearTimeout(timeoutId);
})
.catch(() => {});
return racePromise;

@@ -19,0 +23,0 @@ };

Sorry, the diff of this file is not supported yet

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