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

cockatiel

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cockatiel - npm Package Compare versions

Comparing version 3.1.0 to 3.1.1

5

dist/common/abort.js

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

}
(0, Event_1.onAbort)(signal)(() => ctrl.abort());
if (signal !== exports.neverAbortedSignal) {
const ref = new WeakRef(ctrl);
(0, Event_1.onAbort)(signal)(() => ref.deref()?.abort());
}
return ctrl;

@@ -24,0 +27,0 @@ };

@@ -18,5 +18,8 @@ import { onAbort } from './Event';

}
onAbort(signal)(() => ctrl.abort());
if (signal !== neverAbortedSignal) {
const ref = new WeakRef(ctrl);
onAbort(signal)(() => ref.deref()?.abort());
}
return ctrl;
};
//# sourceMappingURL=abort.js.map

2

package.json
{
"name": "cockatiel",
"version": "3.1.0",
"version": "3.1.1",
"description": "A resilience and transient-fault-handling library that allows developers to express policies such as Backoff, Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. Inspired by .NET Polly.",

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

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