New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

esrap

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

esrap - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

2

package.json
{
"name": "esrap",
"version": "1.3.2",
"version": "1.3.3",
"description": "Parse in reverse",

@@ -5,0 +5,0 @@ "repository": {

@@ -559,2 +559,8 @@ /** @import { TSESTree } from '@typescript-eslint/types' */

break;
case 'TSIndexedAccessType':
handle_type_annotation(node.objectType, state);
state.commands.push('[');
handle_type_annotation(node.indexType, state);
state.commands.push(']');
break;
default:

@@ -938,3 +944,8 @@ throw new Error(`Not implemented type annotation ${node.type}`);

ExportAllDeclaration(node, state) {
state.commands.push('export * from ');
state.commands.push('export * ');
if (node.exported) {
state.commands.push('as ');
handle(node.exported, state);
}
state.commands.push(' from ');
handle(node.source, state);

@@ -941,0 +952,0 @@ state.commands.push(';');

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