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

shift-parser

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shift-parser - npm Package Compare versions

Comparing version 5.0.1 to 5.0.2

README.md

10

dist/tokenizer.js

@@ -166,4 +166,10 @@ "use strict";

_this.index = index;
_this.line = line;
_this.column = column;
// Safari defines these properties as non-writable and non-configurable on Error objects
try {
_this.line = line;
_this.column = column;
} catch (e) {}
// define these as well so Safari still has access to this info
_this.parseErrorLine = line;
_this.parseErrorColumn = column;
_this.description = msg;

@@ -170,0 +176,0 @@ _this.message = "[" + line + ":" + column + "]: " + msg;

2

package.json
{
"name": "shift-parser",
"version": "5.0.1",
"version": "5.0.2",
"description": "ECMAScript parser that produces a Shift format AST",

@@ -5,0 +5,0 @@ "author": "Shape Security Labs",

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