Socket
Socket
Sign inDemoInstall

r1csfile

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

r1csfile - npm Package Compare versions

Comparing version 0.0.44 to 0.0.45

2

package.json

@@ -8,3 +8,3 @@ {

},
"version": "0.0.44",
"version": "0.0.45",
"description": "r1cs file format parser",

@@ -11,0 +11,0 @@ "main": "./build/main.cjs",

@@ -172,5 +172,5 @@ import {F1Field, getCurveFromR} from "ffjavascript";

options.loadConstraints = options.loadConstraints || true;
options.loadMap = options.loadMap || false;
options.loadCustomGates = options.loadCustomGates || true;
options.loadConstraints = "loadConstraints" in options ? options.loadConstraints : true;
options.loadMap = "loadMap" in options ? options.loadMap : false;
options.loadCustomGates = "loadCustomGates" in options ? options.loadCustomGates : true;

@@ -177,0 +177,0 @@ const res = await readR1csHeader(fd, sections, options);

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