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

formicary

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

formicary - npm Package Compare versions

Comparing version 0.3.0-beta.6 to 0.3.0-beta.7

7

dist/formicary.esm.js

@@ -471,3 +471,8 @@ // src/internal/path.ts

const errors = combine({
validatorResult: validationError$,
validatorResult: validationError$.pipe(distinctUntilChanged((a, b) => {
if (Array.isArray(a) && Array.isArray(b)) {
return a.length === b.length && a.every((v, i) => b[i] === v);
}
return a === b;
})),
manualResult: manualError$

@@ -474,0 +479,0 @@ });

@@ -529,3 +529,8 @@ var __create = Object.create;

const errors = (0, import_derive_state2.combine)({
validatorResult: validationError$,
validatorResult: validationError$.pipe((0, import_derive_state2.distinctUntilChanged)((a, b) => {
if (Array.isArray(a) && Array.isArray(b)) {
return a.length === b.length && a.every((v, i) => b[i] === v);
}
return a === b;
})),
manualResult: manualError$

@@ -532,0 +537,0 @@ });

2

package.json
{
"version": "0.3.0-beta.6",
"version": "0.3.0-beta.7",
"license": "MIT",

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

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