🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

algorithm-visualizer

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

algorithm-visualizer - npm Package Compare versions

Comparing version
2.3.4
to
2.3.5
+7
-9
dist/algorithm-visualizer.cjs.js

@@ -77,5 +77,2 @@ 'use strict';

var MAX_OBJECTS = 100;
/**
* @ignore
*/
var Commander = /** @class */ (function () {

@@ -88,2 +85,9 @@ function Commander(iArguments) {

}
/**
* @ignore
*/
Commander.init = function () {
this.commands = [];
this.objectCount = 0;
};
Commander.command = function (key, method, iArguments) {

@@ -164,5 +168,2 @@ var args = Array.from(iArguments);

/**
* @ignore
*/
var Layout = /** @class */ (function (_super) {

@@ -228,5 +229,2 @@ __extends(Layout, _super);

/**
* @ignore
*/
var Tracer = /** @class */ (function (_super) {

@@ -233,0 +231,0 @@ __extends(Tracer, _super);

@@ -73,5 +73,2 @@ var Randomize;

var MAX_OBJECTS = 100;
/**
* @ignore
*/
var Commander = /** @class */ (function () {

@@ -84,2 +81,9 @@ function Commander(iArguments) {

}
/**
* @ignore
*/
Commander.init = function () {
this.commands = [];
this.objectCount = 0;
};
Commander.command = function (key, method, iArguments) {

@@ -160,5 +164,2 @@ var args = Array.from(iArguments);

/**
* @ignore
*/
var Layout = /** @class */ (function (_super) {

@@ -224,5 +225,2 @@ __extends(Layout, _super);

/**
* @ignore
*/
var Tracer = /** @class */ (function (_super) {

@@ -229,0 +227,0 @@ __extends(Tracer, _super);

@@ -79,5 +79,2 @@ (function (global, factory) {

var MAX_OBJECTS = 100;
/**
* @ignore
*/
var Commander = /** @class */ (function () {

@@ -90,2 +87,9 @@ function Commander(iArguments) {

}
/**
* @ignore
*/
Commander.init = function () {
this.commands = [];
this.objectCount = 0;
};
Commander.command = function (key, method, iArguments) {

@@ -166,5 +170,2 @@ var args = Array.from(iArguments);

/**
* @ignore
*/
var Layout = /** @class */ (function (_super) {

@@ -230,5 +231,2 @@ __extends(Layout, _super);

/**
* @ignore
*/
var Tracer = /** @class */ (function (_super) {

@@ -235,0 +233,0 @@ __extends(Tracer, _super);

@@ -9,5 +9,2 @@ /**

}
/**
* @ignore
*/
export default abstract class Commander {

@@ -21,2 +18,6 @@ /**

protected constructor(iArguments: IArguments);
/**
* @ignore
*/
static init(): void;
protected static command(key: string | null, method: string, iArguments: IArguments): void;

@@ -23,0 +24,0 @@ private static randomizeKey;

import { Commander, Tracer } from './';
/**
* @ignore
*/
export default abstract class Layout extends Commander {

@@ -6,0 +3,0 @@ /**

import { Commander } from './';
/**
* @ignore
*/
export default abstract class Tracer extends Commander {

@@ -6,0 +3,0 @@ /**

{
"name": "algorithm-visualizer",
"version": "2.3.4",
"version": "2.3.5",
"description": "Visualization Library for JavaScript",

@@ -26,3 +26,5 @@ "keywords": [

"@types/node": "^12.0.8",
"ava": "^2.1.0",
"gh-pages": "^2.0.1",
"nyc": "^14.1.1",
"rollup": "^1.15.1",

@@ -38,4 +40,4 @@ "rollup-plugin-typescript2": "^0.21.1",

"docs": "typedoc",
"test": "node ./test",
"prepublishOnly": "npm run build",
"test": "nyc ava",
"prepublishOnly": "npm run build && npm test",
"postpublish": "npm run docs && gh-pages -d docs"

@@ -45,3 +47,8 @@ },

"dist"
]
],
"ava": {
"helpers": [
"test/helpers/**/*"
]
}
}

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

# tracers.js [![npm](https://img.shields.io/npm/v/algorithm-visualizer.svg?style=flat-square)](https://www.npmjs.com/package/algorithm-visualizer)
# tracers.js [![npm](https://img.shields.io/npm/v/algorithm-visualizer.svg?style=flat-square)](https://www.npmjs.com/package/algorithm-visualizer) [![Travis (.com)](https://img.shields.io/travis/com/algorithm-visualizer/tracers.js.svg?style=flat-square)](https://travis-ci.com/algorithm-visualizer/tracers.js)

@@ -3,0 +3,0 @@ > This repository is part of the project [Algorithm Visualizer](https://github.com/algorithm-visualizer).