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

clues

Package Overview
Dependencies
Maintainers
2
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clues - npm Package Compare versions

Comparing version 3.5.44-rc1 to 3.5.45

2

package.json
{
"name": "clues",
"version": "3.5.44-rc1",
"version": "3.5.45",
"description": "Lightweight logic tree solver using promises.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -31,6 +31,7 @@ (function(self) {

function fetch() {
function fetch(options) {
var self = this,
buffer = '',
queue = self.$queue;
queue = self.$queue,
extraHandler = options.extraHandler;

@@ -75,3 +76,2 @@ delete self.$queue;

var key = m[1],value;
if (!self[key]) return;

@@ -83,2 +83,10 @@ try {

}
if (!self[key]) {
if (extraHandler && value && !value.error) {
extraHandler(key, value);
}
return;
}
if (value && value.error)

@@ -85,0 +93,0 @@ queue[key].reject(value);

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