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

@harmoniclabs/plutus-data

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@harmoniclabs/plutus-data - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

19

dist/fromString.js

@@ -30,3 +30,20 @@ "use strict";

var openBracketIdx = str.indexOf("[");
if (openBracketIdx < 0) {
var bIdx = str.indexOf("B");
var iIdx = str.indexOf("I");
if (
// there is no open bracket
openBracketIdx < 0 ||
( // or
// we have an open bracket
// and B is also present
bIdx >= 0 ?
// and B is before the open bracket
bIdx < openBracketIdx :
(
// or I is also present
iIdx >= 0 ?
// and I is before
iIdx < openBracketIdx :
// else open bracket comes first
false))) {
var intMatch = str

@@ -33,0 +50,0 @@ // I\s+ -> "I" followed by one or more space

2

package.json
{
"name": "@harmoniclabs/plutus-data",
"version": "1.2.3",
"version": "1.2.4",
"description": "",

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