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.2.1 to 3.3.0

2

package.json
{
"name": "monkberry-parser",
"version": "3.2.1",
"version": "3.3.0",
"description": "Monkberry Parser",

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

@@ -63,2 +63,8 @@ /* Helper methods */

function CommentNode(comment, loc) {
this.type = "Comment";
this.comment = comment;
this.loc = loc;
}
function ElementNode(name, attributes, body, loc) {

@@ -79,2 +85,8 @@ this.type = "Element";

function SpreadAttributeNode(identifier, loc) {
this.type = "SpreadAttribute";
this.identifier = identifier;
this.loc = loc;
}
function ExpressionStatementNode(expression, loc) {

@@ -86,2 +98,8 @@ this.type = 'ExpressionStatement';

function ImportStatementNode(path, loc) {
this.type = 'ImportStatement';
this.path = path;
this.loc = loc;
}
function IfStatementNode(test, then, _else, loc) {

@@ -224,5 +242,8 @@ this.type = "IfStatement";

parser.ast.TextNode = TextNode;
parser.ast.CommentNode = CommentNode;
parser.ast.ElementNode = ElementNode;
parser.ast.AttributeNode = AttributeNode;
parser.ast.SpreadAttributeNode = SpreadAttributeNode;
parser.ast.ExpressionStatementNode = ExpressionStatementNode;
parser.ast.ImportStatementNode = ImportStatementNode;
parser.ast.IfStatementNode = IfStatementNode;

@@ -229,0 +250,0 @@ parser.ast.ForStatementNode = ForStatementNode;

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