Socket
Socket
Sign inDemoInstall

zimmerframe

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zimmerframe - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

package.json
{
"name": "zimmerframe",
"description": "A tool for walking ASTs",
"version": "0.2.0",
"version": "0.2.1",
"type": "module",

@@ -6,0 +6,0 @@ "exports": {

@@ -80,4 +80,7 @@ /**

},
visit: (node, next_state = state) => {
return visit(node, path, next_state) ?? node;
visit: (next_node, next_state = state) => {
path.push(node);
const result = visit(next_node, path, next_state) ?? next_node;
path.pop();
return result;
}

@@ -84,0 +87,0 @@ };

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