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

meriyah

Package Overview
Dependencies
Maintainers
1
Versions
917
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

meriyah - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

2

package.json
{
"name": "meriyah",
"version": "0.3.0",
"version": "0.3.1",
"description": "A 100% compliant, self-hosted javascript parser with high focus on both performance and stability",

@@ -5,0 +5,0 @@ "main": "dist/meriyah.umd.js",

@@ -0,0 +0,0 @@ import { Token, KeywordDescTable } from './token';

@@ -0,0 +0,0 @@ import { ParserState } from './common';

@@ -175,2 +175,3 @@ interface _Node<T extends string> {

| CallExpression
| ImportExpression
| NewExpression

@@ -356,2 +357,3 @@ | SequenceExpression

| ConditionalExpression
| ImportExpression
| CallExpression

@@ -440,3 +442,5 @@ | NewExpression

export interface ImportExpression extends _Expression<'Import'> {}
export interface ImportExpression extends _Expression<'ImportExpression'> {
source: Expression;
}

@@ -443,0 +447,0 @@ export interface NewExpression extends _Expression<'NewExpression'> {

@@ -0,0 +0,0 @@ import { unicodeLookup } from '../unicode';

@@ -0,0 +0,0 @@ ### Lexer source

@@ -0,0 +0,0 @@ // Unicode v. 12 support

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