Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flex-algo

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-algo - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

3

lib/binaryTree.d.ts

@@ -1,2 +0,2 @@

declare class BinaryNode {
export declare class BinaryNode {
value: number;

@@ -13,2 +13,1 @@ left: BinaryNode | null;

}
export {};
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BinaryTree = void 0;
exports.BinaryTree = exports.BinaryNode = void 0;
var BinaryNode = /** @class */ (function () {

@@ -12,2 +12,3 @@ function BinaryNode(value) {

}());
exports.BinaryNode = BinaryNode;
var BinaryTree = /** @class */ (function () {

@@ -14,0 +15,0 @@ function BinaryTree() {

import { PriorityQueue } from './priorityQueue';
import { BinaryTree } from './binaryTree';
export { PriorityQueue, BinaryTree };
import { BinaryTree, BinaryNode } from './binaryTree';
export { PriorityQueue, BinaryTree, BinaryNode };
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BinaryTree = exports.PriorityQueue = void 0;
exports.BinaryNode = exports.BinaryTree = exports.PriorityQueue = void 0;
var priorityQueue_1 = require("./priorityQueue");

@@ -8,1 +8,2 @@ Object.defineProperty(exports, "PriorityQueue", { enumerable: true, get: function () { return priorityQueue_1.PriorityQueue; } });

Object.defineProperty(exports, "BinaryTree", { enumerable: true, get: function () { return binaryTree_1.BinaryTree; } });
Object.defineProperty(exports, "BinaryNode", { enumerable: true, get: function () { return binaryTree_1.BinaryNode; } });
{
"name": "flex-algo",
"version": "0.1.3",
"version": "0.1.4",
"description": "\"SDK for commonly used data structure and algorithms\"",

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

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