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

alien-signals

Package Overview
Dependencies
Maintainers
0
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alien-signals - npm Package Compare versions

Comparing version 0.4.6 to 0.4.7

2

package.json
{
"name": "alien-signals",
"version": "0.4.6",
"version": "0.4.7",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "The lightest signal library.",

@@ -162,8 +162,6 @@ <p align="center">

if ('update' in dep) {
if (dep.version !== link.version) {
return true;
}
const depFlags = dep.flags;
const linkValue = link.value;
if (depFlags & SubscriberFlags.Dirty) {
if (dep.update()) {
if (dep.update() !== linkValue) {
return true;

@@ -173,8 +171,13 @@ }

if (checkDirty(dep.deps!)) {
if (dep.update()) {
if (dep.update() !== linkValue) {
return true;
}
} else {
dep.flags &= ~SubscriberFlags.ToCheckDirty;
dep.flags = depFlags & ~SubscriberFlags.ToCheckDirty;
if (dep.currentValue !== linkValue) {
return true;
}
}
} else if (dep.currentValue !== linkValue) {
return true;
}

@@ -181,0 +184,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