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

ts-tree-structure

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-tree-structure - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "ts-tree-structure",
"version": "1.0.0",
"version": "1.0.1",
"description": "Manipulate and traverse tree-like structures in TypeScript.",

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

@@ -25,3 +25,3 @@ # ts-tree-structure

```js
const Tree = require('ts-tree-structure');
const Tree = require('ts-tree-structure').default;

@@ -34,4 +34,5 @@ const tree = new Tree();

```html
<script src="https://unpkg.com/ts-tree-structure/"></script>
<script src="https://unpkg.com/ts-tree-structure/umd/ts-tree-structure.min.js"></script>
<script>
var Tree = Tree.default;
var tree = new Tree();

@@ -38,0 +39,0 @@ var root = tree.parse({ id: 1, name: 'foo', children: [{ id: 11, name: 'bar' }]});

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