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

@jymfony/datastructure

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jymfony/datastructure - npm Package Compare versions

Comparing version 0.1.0-alpha.11 to 0.1.0-alpha.12

6

package.json
{
"name": "@jymfony/datastructure",
"version": "0.1.0-alpha.11",
"version": "0.1.0-alpha.12",
"description": "Jymfony Data Structures",

@@ -21,4 +21,4 @@ "scripts": {

"dependencies": {
"@jymfony/exceptions": "0.1.0-alpha.11",
"@jymfony/util": "0.1.0-alpha.11"
"@jymfony/exceptions": "0.1.0-alpha.12",
"@jymfony/util": "0.1.0-alpha.12"
},

@@ -25,0 +25,0 @@ "devDependencies": {

@@ -50,3 +50,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait');

*/
class BTree extends mix(undefined, GenericCollectionTrait) {
class BTree extends mix(Object, GenericCollectionTrait) {
/**

@@ -53,0 +53,0 @@ * Comparison function can be defined passing it to cmp_function parameter.

@@ -59,3 +59,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait');

class HashTable extends mix(undefined, GenericCollectionTrait) {
class HashTable extends mix(Object, GenericCollectionTrait) {
/**

@@ -75,3 +75,2 @@ * Constructor.

this._bucketSize = bucketSize;
this.clear();

@@ -78,0 +77,0 @@ }

@@ -28,3 +28,3 @@ const GenericCollectionTrait = require('./Traits/GenericCollectionTrait');

*/
class PriorityQueue extends mix(undefined, GenericCollectionTrait) {
class PriorityQueue extends mix(Object, GenericCollectionTrait) {
/**

@@ -35,3 +35,2 @@ * Constructor.

super();
this.clear();

@@ -38,0 +37,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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