Socket
Socket
Sign inDemoInstall

athro

Package Overview
Dependencies
0
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.5.1 to 1.5.2

2

package.json
{
"name": "athro",
"version": "1.5.1",
"version": "1.5.2",
"description": "A library for javascript which contains basic datastructures, algorithms and some generic functionalities which a developer needs",

@@ -5,0 +5,0 @@ "main": "index.js",

// left right root
export const postOrder(root) => {
export const postOrder = (root) => {
if(root === null || root === undefined) return root;

@@ -4,0 +4,0 @@ var visited = [];

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