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

monkberry-parser

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monkberry-parser - npm Package Compare versions

Comparing version 3.6.1 to 3.7.0

2

package.json
{
"name": "monkberry-parser",
"version": "3.6.1",
"version": "3.7.0",
"description": "Monkberry Parser",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -102,7 +102,7 @@ /* Helper methods */

function IfStatementNode(test, then, _else, loc) {
function IfStatementNode(cond, then, otherwise, loc) {
this.type = "IfStatement";
this.test = test;
this.cond = cond;
this.then = then;
this._else = _else;
this.otherwise = otherwise;
this.loc = loc;

@@ -119,2 +119,9 @@ }

function BlockStatementNode(name, body, loc) {
this.type = "BlockStatement";
this.name = name;
this.body = body;
this.loc = loc;
}
function UnsafeStatementNode(html, loc) {

@@ -255,2 +262,3 @@ this.type = "UnsafeStatement";

parser.ast.ForStatementNode = ForStatementNode;
parser.ast.BlockStatementNode = BlockStatementNode;
parser.ast.UnsafeStatementNode = UnsafeStatementNode;

@@ -257,0 +265,0 @@ parser.ast.FilterExpressionNode = FilterExpressionNode;

Sorry, the diff of this file is too big to display

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