Socket
Socket
Sign inDemoInstall

acorn-walk

Package Overview
Dependencies
0
Maintainers
3
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.0.2 to 8.1.0

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## 8.1.0 (2021-04-24)
### New features
Support node types for class fields and private methods.
## 8.0.2 (2021-01-25)

@@ -2,0 +8,0 @@

7

dist/walk.js

@@ -424,3 +424,3 @@ (function (global, factory) {

};
base.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.Literal = ignore;
base.ImportSpecifier = base.ImportDefaultSpecifier = base.ImportNamespaceSpecifier = base.Identifier = base.PrivateIdentifier = base.Literal = ignore;

@@ -445,5 +445,5 @@ base.TaggedTemplateExpression = function (node, st, c) {

};
base.MethodDefinition = base.Property = function (node, st, c) {
base.MethodDefinition = base.PropertyDefinition = base.Property = function (node, st, c) {
if (node.computed) { c(node.key, st, "Expression"); }
c(node.value, st, "Expression");
if (node.value) { c(node.value, st, "Expression"); }
};

@@ -466,2 +466,1 @@

})));
//# sourceMappingURL=walk.js.map

@@ -19,3 +19,3 @@ {

},
"version": "8.0.2",
"version": "8.1.0",
"engines": {"node": ">=0.4.0"},

@@ -22,0 +22,0 @@ "maintainers": [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc