summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2024-02-08 19:59:21 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2024-02-08 19:59:21 -0600
commit712fc09f9cf2c3a657f5d94cb0748334d9fc587e (patch)
tree43ceaca4c274528d96ad3ced50845a0946827b68 /src
parent62993dd59bbbfcdb07dbb5836d359fad6334f23e (diff)
Initial commit - setup
Diffstat (limited to 'src')
-rw-r--r--src/binaryConverter.js2
-rw-r--r--src/demo.js18
2 files changed, 2 insertions, 18 deletions
diff --git a/src/binaryConverter.js b/src/binaryConverter.js
index 33cbb9c..1b72877 100644
--- a/src/binaryConverter.js
+++ b/src/binaryConverter.js
@@ -54,3 +54,5 @@ class BinaryConverter {
return this._integer;
}
};
+
+module.exports = BinaryConverter; \ No newline at end of file
diff --git a/src/demo.js b/src/demo.js
deleted file mode 100644
index 75fa61a..0000000
--- a/src/demo.js
+++ /dev/null
@@ -1,18 +0,0 @@
-console.log('Hello from demo.js');
-
-let v0 = [];
-let v1 = [1, 2, 3, 4];
-let v2 = [5, 6, 7, 8];
-
-v0 = [v1, v2]
-
-v0 = math.matrix(v0);
-v1 = math.matrix(v1);
-v2 = math.matrix(v2);
-
-v1 = math.transpose(v1);
-v2 = math.transpose(v2);
-
-let v3 = math.concat(v1, v2, 0);
-
-console.log(v3);