We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4cd52 commit 47c0e92Copy full SHA for 47c0e92
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "algorithm-visualizer",
3
"version": "2.1.6",
4
- "description": "JavaScript Tracers for Algorithm Visualizer",
+ "description": "Visualization Library for JavaScript",
5
"main": "dist/tracers.js",
6
"scripts": {
7
"build": "node ./node_modules/webpack/bin/webpack --bail --progress --config webpack.config.js",
src/Tracer.js
@@ -44,8 +44,7 @@ Tracer.tracerCount = 0;
44
Tracer.traces = [];
45
46
const { ALGORITHM_VISUALIZER } = process.env;
47
-if (ALGORITHM_VISUALIZER) {
48
-} else {
+if (!ALGORITHM_VISUALIZER) {
49
const axios = require('axios');
50
const opn = require('opn');
51
process.on('beforeExit', () => {
0 commit comments