🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@algorithm.ts/queue

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@algorithm.ts/queue - npm Package Compare versions

Comparing version

to
3.0.0-alpha.2

2

lib/cjs/index.js
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
class CircularQueue {

@@ -6,0 +4,0 @@ _elements;

2

lib/types/index.d.ts

@@ -81,3 +81,3 @@ import { ICollection, ICompare } from '@algorithm.ts/types';

*/
declare type IPriorityQueue<T> = IQueue<T>;
type IPriorityQueue<T> = IQueue<T>;

@@ -84,0 +84,0 @@ interface ICircularQueueProps {

{
"name": "@algorithm.ts/queue",
"version": "3.0.0-alpha.1",
"version": "3.0.0-alpha.2",
"description": "Typescript implementation of queues, such as priority queue and circular queue.",

@@ -40,3 +40,3 @@ "author": {

"scripts": {
"build": "cross-env NODE_ENV=production rollup -c ../../rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c ../../rollup.config.mjs",
"prebuild": "rimraf lib/",

@@ -47,5 +47,5 @@ "prepublishOnly": "cross-env ROLLUP_SHOULD_SOURCEMAP=false yarn build",

"dependencies": {
"@algorithm.ts/types": "^3.0.0-alpha.1"
"@algorithm.ts/types": "^3.0.0-alpha.2"
},
"gitHead": "8f9a0d0dfee15efc08c4165848123b118c13ce81"
"gitHead": "3d718fba94605e2fd60a3056b502e2e1376ca0ed"
}