Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 47c0e92

Browse files
committed
Update package description
1 parent 0c4cd52 commit 47c0e92

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "algorithm-visualizer",
33
"version": "2.1.6",
4-
"description": "JavaScript Tracers for Algorithm Visualizer",
4+
"description": "Visualization Library for JavaScript",
55
"main": "dist/tracers.js",
66
"scripts": {
77
"build": "node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.config.js",

src/Tracer.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ Tracer.tracerCount = 0;
4444
Tracer.traces = [];
4545

4646
const { ALGORITHM_VISUALIZER } = process.env;
47-
if (ALGORITHM_VISUALIZER) {
48-
} else {
47+
if (!ALGORITHM_VISUALIZER) {
4948
const axios = require('axios');
5049
const opn = require('opn');
5150
process.on('beforeExit', () => {

0 commit comments

Comments
 (0)