New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

quarx

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quarx - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

2

dist/index.js

@@ -172,3 +172,3 @@ var __defProp = Object.defineProperty;

let result, error;
const atom = createAtom(() => autorun(computation), {name});
const atom = createAtom(() => autorun(computation, {name}), {name: "result:" + name});
function computation() {

@@ -175,0 +175,0 @@ try {

@@ -7,3 +7,3 @@ {

"name": "quarx",
"version": "3.0.0",
"version": "3.0.1",
"description": "Simple dependency graph engine, MobX inspired",

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

@@ -11,3 +11,6 @@ import { createAtom, autorun } from './core';

const atom = createAtom(() => autorun(computation), { name });
const atom = createAtom(
() => autorun(computation, { name }),
{ name: 'result:' + name }
);

@@ -14,0 +17,0 @@ function computation() {

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